Skip to content

Commit 6b53221

Browse files
authored
try debugging
1 parent b18e92f commit 6b53221

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ if (exitCode) {
7272
if (!pushRefspec) {
7373
const { exitCode } = await $({
7474
cwd: rootPath,
75-
reject: false
75+
reject: false,
7676
})`git symbolic-ref HEAD`;
7777
if (exitCode) {
7878
pushRefspec = stdout;
@@ -86,8 +86,9 @@ if (exitCode) {
8686
if (pushForce == null) {
8787
const { exitCode } = await $({
8888
cwd: rootPath,
89-
reject: false
89+
reject: false,
9090
})`git symbolic-ref HEAD`;
91+
console.log(pushForce, "git symbolic-ref HEAD", exitCode);
9192
if (exitCode) {
9293
pushForce = true;
9394
} else {

0 commit comments

Comments
 (0)