@hasna/terminal 1.3.7 → 1.3.8
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/dist/cli.js +1 -1
- package/package.json +1 -1
- package/src/cli.tsx +1 -1
package/dist/cli.js
CHANGED
|
@@ -449,7 +449,7 @@ else if (args.length > 0) {
|
|
|
449
449
|
if (isIrreversible(command)) {
|
|
450
450
|
console.error(`⚠ IRREVERSIBLE: $ ${command}`);
|
|
451
451
|
console.error(` This command may kill processes, push code, or delete data.`);
|
|
452
|
-
console.error(` Run
|
|
452
|
+
console.error(` Run directly in your shell if you're sure: ${command}`);
|
|
453
453
|
process.exit(1);
|
|
454
454
|
}
|
|
455
455
|
// Show what we're running
|
package/package.json
CHANGED
package/src/cli.tsx
CHANGED
|
@@ -428,7 +428,7 @@ else if (args.length > 0) {
|
|
|
428
428
|
if (isIrreversible(command)) {
|
|
429
429
|
console.error(`⚠ IRREVERSIBLE: $ ${command}`);
|
|
430
430
|
console.error(` This command may kill processes, push code, or delete data.`);
|
|
431
|
-
console.error(` Run
|
|
431
|
+
console.error(` Run directly in your shell if you're sure: ${command}`);
|
|
432
432
|
process.exit(1);
|
|
433
433
|
}
|
|
434
434
|
|