mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 10:14:46 -04:00
Fix #532
This commit is contained in:
parent
def450837e
commit
6cf529b5da
@ -65,7 +65,9 @@ for s, l in zip(scripts, links):
|
|||||||
if os.path.lexists(l):
|
if os.path.lexists(l):
|
||||||
os.remove(l)
|
os.remove(l)
|
||||||
print 'Creating link:', l, '->', s
|
print 'Creating link:', l, '->', s
|
||||||
|
omask = os.umask(022)
|
||||||
os.symlink(s, l)
|
os.symlink(s, l)
|
||||||
|
os.umask(omask)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
dest_path = %(dest_path)s
|
dest_path = %(dest_path)s
|
||||||
|
Loading…
x
Reference in New Issue
Block a user