@wyxos/zephyr 0.1.8 → 0.1.9
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/package.json +1 -1
- package/src/index.mjs +5 -0
package/package.json
CHANGED
package/src/index.mjs
CHANGED
|
@@ -853,6 +853,11 @@ async function runRemoteTasks(config, options = {}) {
|
|
|
853
853
|
throw new Error(`Command failed: ${command}`)
|
|
854
854
|
}
|
|
855
855
|
|
|
856
|
+
// Show success confirmation with command
|
|
857
|
+
if (result.code === 0) {
|
|
858
|
+
logSuccess(`✓ ${command}`)
|
|
859
|
+
}
|
|
860
|
+
|
|
856
861
|
return result
|
|
857
862
|
}
|
|
858
863
|
|