Fixed: Cleanup of Jakefiles for better Node adaption

This commit is contained in:
Martin Carlberg
2021-08-24 10:58:12 +02:00
parent 471e605871
commit 52b7a82b4d
10 changed files with 48 additions and 371 deletions
+1 -1
View File
@@ -431,7 +431,7 @@ global.installCopy = function(sourcePath, useSudo)
// hacky way to do a sudo copy.
if (useSudo)
child_process.execSync(["sudo", "cp", "-Rf", sourcePath, path.dirname(targetPath)].join(" ")).toString();
child_process.execSync(["sudo", "cp", "-Rf", sourcePath, path.dirname(targetPath)].join(" "));
else
copyRecursiveSync(sourcePath, targetPath);