machinepack
Advanced tools
Comparing version 2.0.4 to 2.0.5
@@ -118,2 +118,3 @@ #!/usr/bin/env node | ||
Machinepacks.getMachinesDir({ | ||
@@ -129,3 +130,2 @@ dir: Path.resolve(process.cwd(), inputs.dir) | ||
Machinepacks.runMachineInteractive({ | ||
@@ -138,3 +138,4 @@ machinepackPath: machinepackPath, | ||
name: inputName, | ||
value: inputValue | ||
value: inputValue, | ||
protect: false | ||
}); | ||
@@ -170,3 +171,3 @@ return memo; | ||
error: function (err){ | ||
console.error('Unexpected error occurred:\n',err); | ||
console.error('Unexpected error occurred:\n',typeof err === 'object' && err instanceof Error ? err.stack : err); | ||
}, | ||
@@ -229,2 +230,6 @@ notFound: function (){ | ||
_.each(result.withInputs, function (configuredInput){ | ||
// Skip protected inputs (they need to be re-entered) | ||
if (configuredInput.protect) return; | ||
cmd += ' '; | ||
@@ -231,0 +236,0 @@ cmd += '--'+configuredInput.name+'=\''+configuredInput.value.replace(/'/g,'\'\\\'\'')+'\''; |
{ | ||
"name": "machinepack", | ||
"version": "2.0.4", | ||
"version": "2.0.5", | ||
"description": "CLI tool for working with machinepacks and their machines.", | ||
@@ -5,0 +5,0 @@ "bin": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24099
676