Skip to content

Commit

Permalink
fix: Change windows cls command to point an exe file
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiopena committed Oct 12, 2023
1 parent c3b3f04 commit 27497e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bbpp/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
elif len(repolist) == 1:
print(f'Repository {repolist[0]} found')
while True:
_ = call('clear' if os.name == 'posix' else 'cls')
_ = call('clear' if os.name == 'posix' else 'cmd /c cls')
bb.check(repo=repolist[0])
time.sleep(10)
else:
Expand Down

0 comments on commit 27497e3

Please sign in to comment.