Skip to content

Commit

Permalink
Merge pull request #244 from bogdant36/CTX-5758-logfix
Browse files Browse the repository at this point in the history
CTX-5758: Set ignoreStdErr and stdOutput to true since we dont want t…
  • Loading branch information
dule1322 authored Aug 8, 2024
2 parents 0f98eb6 + 95e546c commit 584abff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coretex/cli/modules/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def checkEnvironment() -> None:
return

try:
command([str(venvCoretex), "version"], check = True)
command([str(venvCoretex), "version"], check = True, ignoreStderr = True, ignoreStdout = True)
except Exception:
createEnvironment(venvPython)
return
Expand Down

0 comments on commit 584abff

Please sign in to comment.