pinokiod 3.19.39 → 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 +4 -1
  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}`)
@@ -638,7 +641,7 @@ class Shell {
638
641
  conda_hook () {
639
642
  if (this.platform === "win32") {
640
643
  if (/bash/i.test(this.shell)) {
641
- return "source conda.sh"
644
+ return "source /c/pinokio/bin/miniconda/etc/profile.d/conda.sh"
642
645
  } else {
643
646
  return "conda_hook"
644
647
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.19.39",
3
+ "version": "3.19.41",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {