Skip to content

Commit

Permalink
ux: Don't output stderr while checking for installed version
Browse files Browse the repository at this point in the history
  • Loading branch information
Alorel committed Sep 23, 2023
1 parent 89ad108 commit 8ff030b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ types:
- deps
- deps-dev
- perf
- ux
scopes:
- dev
1 change: 1 addition & 0 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
fix: Bug Fixes
deps: Dependency updates
perf: Performance
ux: UX
trivial-types: |
chore: Maintenance
ci: CI & Build
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function getInstalledVersion(pkg, binaryName) {
const res = spawnSync(app, args, {
encoding: 'utf8',
env: process.env,
stdio: ['ignore', 'pipe', 'inherit'],
stdio: ['ignore', 'pipe', 'ignore'],
});

if (res.status !== 0) {
Expand Down

0 comments on commit 8ff030b

Please sign in to comment.