This commit is contained in:
Kovid Goyal 2008-02-23 23:38:53 +00:00
parent def450837e
commit 6cf529b5da

View File

@ -65,7 +65,9 @@ for s, l in zip(scripts, links):
if os.path.lexists(l):
os.remove(l)
print 'Creating link:', l, '->', s
omask = os.umask(022)
os.symlink(s, l)
os.umask(omask)
"""
dest_path = %(dest_path)s