1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-19 10:25:49 +00:00

Merge pull request #30 from ThomasWaldmann/master

tags and a glob fix
This commit is contained in:
TW 2015-05-22 22:58:12 +02:00
commit e5e9f9acb2
2 changed files with 2 additions and 3 deletions

View file

@ -54,7 +54,7 @@ forked from Attic:
Version 0.16
------------
(bugfix release, released on X)
(bugfix release, released on May 16, 2015)
- Fix typo preventing the security confirmation prompt from working (#303)
- Improve handling of systems with improperly configured file system encoding (#289)
- Fix "All archives" output for attic info. (#183)

View file

@ -35,8 +35,7 @@ try:
class Sdist(versioneer.cmd_sdist):
def __init__(self, *args, **kwargs):
for src in glob('borg/*.pyx'):
cython_compiler.compile(glob('borg/*.pyx'),
cython_compiler.default_options)
cython_compiler.compile(src, cython_compiler.default_options)
versioneer.cmd_sdist.__init__(self, *args, **kwargs)
def make_distribution(self):