Skip to content

Commit

Permalink
Merge pull request #55 from strangeweekend/patch-1
Browse files Browse the repository at this point in the history
Minor Windows-friendly updates
  • Loading branch information
diracdeltas authored Feb 28, 2021
2 parents 27388a0 + f502203 commit 799c3e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions check-install.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
### 4
# check spleeter install
try:
spleeter_result = subprocess.run(["spleeter", "-h"], capture_output=True).stdout.decode('utf-8')
spleeter_result = subprocess.run(["spleeter", "--help"], capture_output=True).stdout.decode('utf-8')

if "usage: spleeter" not in spleeter_result:
if "usage: spleeter" not in spleeter_result.lower():
print("(Step 4) Spleeter may be installed incorrectly.")

# we'll get an error if spleeter has been set to 'Run as administrator'
Expand Down

0 comments on commit 799c3e6

Please sign in to comment.