dlw-machine-setup 0.2.3 → 0.2.4
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/bin/installer.js +2 -1
- package/package.json +1 -1
package/bin/installer.js
CHANGED
|
@@ -3930,10 +3930,11 @@ async function main() {
|
|
|
3930
3930
|
}
|
|
3931
3931
|
const result = await execute(config);
|
|
3932
3932
|
printSummary(result);
|
|
3933
|
+
return;
|
|
3933
3934
|
} catch (error) {
|
|
3934
3935
|
console.error("\n[ERROR]", error instanceof Error ? error.message : String(error));
|
|
3936
|
+
await waitForEnter();
|
|
3935
3937
|
}
|
|
3936
|
-
await waitForEnter();
|
|
3937
3938
|
}
|
|
3938
3939
|
async function collectInputs() {
|
|
3939
3940
|
const selectedIds = await esm_default2({
|