Push local state...

This commit is contained in:
TheArcaneBrony
2022-08-12 01:46:42 +02:00
parent 34ca1a8a6c
commit 44859db499
29 changed files with 2865 additions and 13818 deletions

View File

@@ -28,13 +28,14 @@ function copyRecursiveSync(src, dest) {
}
}
function execIn(cmd, workdir) {
function execIn(cmd, workdir, opts) {
try {
return execSync(cmd, {
cwd: workdir,
shell: true,
env: process.env,
encoding: "utf-8",
...opts
});
} catch (error) {
return error.stdout;