@andersbakken/fisk 3.4.102 → 3.4.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/builder/fisk-builder.js +0 -3
- package/package.json +1 -1
package/README.md
CHANGED
package/builder/fisk-builder.js
CHANGED
|
@@ -464,9 +464,6 @@ client.on("getEnvironments", message => {
|
|
|
464
464
|
console.log("Got finish", env);
|
|
465
465
|
exec("tar xf '" + file + "'", { cwd: dir }).
|
|
466
466
|
then(() => {
|
|
467
|
-
console.log("Checking that the environment runs", path.join(dir, "bin", "true"));
|
|
468
|
-
return exec(`"${path.join(dir, "bin", "true")}"`, { cwd: dir });
|
|
469
|
-
}).then(() => {
|
|
470
467
|
const json = path.join(dir, "environment.json");
|
|
471
468
|
console.log("Writing json file", json);
|
|
472
469
|
return fs.writeFile(json, JSON.stringify({ hash: env, created: new Date().toString() }));
|