pinokiod 3.19.40 → 3.19.41

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.
Files changed (2) hide show
  1. package/kernel/shell.js +3 -0
  2. package/package.json +1 -1
package/kernel/shell.js CHANGED
@@ -571,6 +571,9 @@ class Shell {
571
571
  } else if (Array.isArray(params.message)) {
572
572
 
573
573
  let message = []
574
+ if (/bash/i.test(this.shell)) {
575
+ message = ["set -x"]
576
+ }
574
577
  for(let i=0; i<params.message.length; i++) {
575
578
  message.push(params.message[i])
576
579
  message.push(`echo #${i}`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.19.40",
3
+ "version": "3.19.41",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {