Merge pull request #208 from SSPkrolik/permission-fix

Fixed permission issue when installing package
This commit is contained in:
Dominik Picheta 2016-02-17 11:05:33 +00:00
commit 5bc945df5f

View file

@ -70,7 +70,7 @@ proc changeRoot*(origRoot, newRoot, path: string): string =
proc copyFileD*(fro, to: string): string =
## Returns the destination (``to``).
echo(fro, " -> ", to)
copyFile(fro, to)
copyFileWithPermissions(fro, to)
result = to
proc copyDirD*(fro, to: string): seq[string] =