major changes, very much WIP, experimenting with async

This commit is contained in:
Alfred Wärnsäter
2021-06-22 14:04:31 +02:00
parent 206eddbdbd
commit c238ebeef4
17 changed files with 177 additions and 150 deletions
+7 -4
View File
@@ -2,8 +2,11 @@
require ("../../common.jake");
var FILE = require("file"),
SYSTEM = require("system"),
path = FILE.Path(FILE.join(SYSTEM.prefix, "bin", "objj2objcskeleton"));
SYSTEM = require("system");
sudo(["cp", "-f", "objj2objcskeleton", path]);
sudo(["chmod", "755", path]);
const path = require("path");
var p = FILE.Path(path.join(SYSTEM.prefix, "bin", "objj2objcskeleton"));
sudo(["cp", "-f", "objj2objcskeleton", p]);
sudo(["chmod", "755", p]);