Skip to content

Commit 8347840

Browse files
authored
print debug info in release cli (#1276)
1 parent f2cfd21 commit 8347840

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/release/utils/git.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,7 @@ exports.getCurrentSha = async () => {
7575
};
7676

7777
exports.hasDiff = async () => {
78-
return !!await git.diff();
78+
const diff = await git.diff();
79+
console.log(diff);
80+
return !!diff;
7981
};

0 commit comments

Comments
 (0)