This commit is contained in:
Joel Kåberg 2013-02-13 11:38:05 +01:00
commit f817af3ddf

View file

@ -146,7 +146,7 @@ elif useLink == 1 and packed == 0: ## hardlink
target = os.path.join(destination, file)
if os.name == 'nt'
subprocess.call(['cmd', '/C', 'mklink', '/H', target, source], stdout=subprocess.PIPE)
subprocess.call(['cmd', '/C', 'mklink', '/H', source, target], stdout=subprocess.PIPE)
elif os.name == 'posix':
os.link(source, target)
else: