azdo-cli 0.5.0-025-multi-org-support.463 → 0.5.0-025-multi-org-support.465
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -833,7 +833,7 @@ function noticeCredentialBearingRemote(remoteName = "origin") {
|
|
|
833
833
|
|
|
834
834
|
// src/services/git-remote.ts
|
|
835
835
|
var GIT_BINARY = (() => {
|
|
836
|
-
const known = process.platform === "win32" ? [
|
|
836
|
+
const known = process.platform === "win32" ? [String.raw`C:\Program Files\Git\bin\git.exe`, String.raw`C:\Program Files (x86)\Git\bin\git.exe`] : ["/usr/bin/git", "/usr/local/bin/git", "/opt/homebrew/bin/git"];
|
|
837
837
|
return known.find((p) => {
|
|
838
838
|
try {
|
|
839
839
|
execFileSync(p, ["--version"], { stdio: "ignore" });
|