@jive-ai/cli 0.0.38 → 0.0.39
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.mjs +6 -5
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3430,7 +3430,7 @@ async function createGraphQLClient() {
|
|
|
3430
3430
|
|
|
3431
3431
|
//#endregion
|
|
3432
3432
|
//#region package.json
|
|
3433
|
-
var version = "0.0.
|
|
3433
|
+
var version = "0.0.39";
|
|
3434
3434
|
|
|
3435
3435
|
//#endregion
|
|
3436
3436
|
//#region src/runner/index.ts
|
|
@@ -4761,10 +4761,11 @@ Host gitlab.com
|
|
|
4761
4761
|
}
|
|
4762
4762
|
this.debugLog("Configuring pull...");
|
|
4763
4763
|
await execAsync$1(`git config pull.rebase false`);
|
|
4764
|
-
this.
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4764
|
+
const defaultBranch = this.ctx.defaultBranch;
|
|
4765
|
+
this.debugLog(`Pulling ${defaultBranch}...`);
|
|
4766
|
+
await execAsync$1(`git pull origin ${defaultBranch}`);
|
|
4767
|
+
this.debugLog(`Checking out ${defaultBranch}...`);
|
|
4768
|
+
await execAsync$1(`git checkout ${defaultBranch}`);
|
|
4768
4769
|
this.debugLog("Checking out branch...");
|
|
4769
4770
|
try {
|
|
4770
4771
|
await execAsync$1(`git checkout ${this.ctx.branch}`);
|