pinokiod 3.19.20 → 3.19.22
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/kernel/bin/git.js +1 -1
- package/kernel/shell.js +2 -0
- package/package.json +1 -1
package/kernel/bin/git.js
CHANGED
|
@@ -94,7 +94,7 @@ class Git {
|
|
|
94
94
|
return this.kernel.bin.installed.conda && this.kernel.bin.installed.conda.has("git") && this.kernel.bin.installed.brew.has("gh") && gh_config_exists
|
|
95
95
|
} else if (this.kernel.platform === "win32") {
|
|
96
96
|
let gh_config_exists = await this.kernel.exists("config/gh")
|
|
97
|
-
return this.kernel.bin.installed.conda && this.kernel.bin.installed.conda.has("git") && this.kernel.bin.installed.conda.has("
|
|
97
|
+
return this.kernel.bin.installed.conda && this.kernel.bin.installed.conda.has("git") && this.kernel.bin.installed.conda.has("gh") && gh_config_exists && this.kernel.bin.installed.conda.has("git-bash")
|
|
98
98
|
} else {
|
|
99
99
|
let gh_config_exists = await this.kernel.exists("config/gh")
|
|
100
100
|
return this.kernel.bin.installed.conda && this.kernel.bin.installed.conda.has("git") && this.kernel.bin.installed.conda.has("gh") && gh_config_exists
|
package/kernel/shell.js
CHANGED