Skip to content

Commit

Permalink
fix: rebuild
Browse files Browse the repository at this point in the history
Signed-off-by: Ar Rakin <rakinar2@onesoftnet.eu.org>
  • Loading branch information
virtual-designer committed Aug 28, 2024
1 parent 3898a29 commit 494bcbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31792,7 +31792,7 @@ class GitClient {
});
return new Promise((resolve, reject) => {
process.on("exit", (code) => {
if (code !== 0) {
if (code === null || code !== 0) {
console.log("Failed to execute git command: ");
console.error(error);
reject(new Error(`Failed to execute git command: ${error}`));
Expand Down

0 comments on commit 494bcbb

Please sign in to comment.