From 7226330514574a3c7aa8b640ceeb98a367298d6b Mon Sep 17 00:00:00 2001 From: Martin Carlberg Date: Tue, 21 Sep 2021 20:31:29 +0200 Subject: [PATCH] Fixed: Create soft link to node_modules in a simpler way --- Jakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jakefile b/Jakefile index 6f1e59907..39861b755 100644 --- a/Jakefile +++ b/Jakefile @@ -11,7 +11,7 @@ var subprojects = ["Objective-J", "CommonJS", "Foundation", "AppKit", "Tools"]; task ("build", function() { childProcess.execSync(["mkdir", "-p", "$CAPP_BUILD"].map(utilsFile.enquote).join(" "), {stdio: 'inherit'}); - childProcess.execSync(['ln', '-snf', '"$PWD"/node_modules', '"$CAPP_BUILD"/node_modules'].join(" "), {stdio: 'inherit'}); + childProcess.execSync(['ln', '-sf', '"$PWD"/node_modules', '"$CAPP_BUILD"'].join(" "), {stdio: 'inherit'}); }); ["build", "clean", "clobber"].forEach(function(aTaskName)