Skip to content

Commit

Permalink
Build
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrisbin committed May 2, 2024
1 parent b2360a9 commit 3f746ab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,10 @@ class StackCLI {
}
}
async installed() {
const ec = await exec.exec("which", ["stack"]);
const ec = await exec.exec("which", ["stack"], {
silent: true,
ignoreReturnCode: true,
});
return ec == 0;
}
async install() {
Expand Down

0 comments on commit 3f746ab

Please sign in to comment.