pinokiod 3.19.23 → 3.19.24

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
@@ -258,6 +258,9 @@ class Shell {
258
258
  this.params = params
259
259
  if (this.params.shell) {
260
260
  this.shell = this.params.shell
261
+ if (this.shell === "bash") {
262
+ this.args = ["--noprofile", "--norc"]
263
+ }
261
264
  }
262
265
 
263
266
  // 3. path => path can be http, relative, absolute
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.19.23",
3
+ "version": "3.19.24",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {