Skip to content

Commit

Permalink
Merge pull request #1626 from revoxhere/LDarki-patch-1
Browse files Browse the repository at this point in the history
Fix issue #1624
  • Loading branch information
revoxhere committed Mar 3, 2023
2 parents da44421 + 072b945 commit 5d300fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PC_Miner.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def handler(signal_received, frame):
if sys.platform == "win32":
_exit(0)
else:
Popen("kill $(ps awux | grep PC_Miner | grep -v grep | awk '{print $2}')",
Popen("kill $(ps aux | grep PC_Miner | awk '{print $2}')",
shell=True, stdout=PIPE)


Expand Down

0 comments on commit 5d300fb

Please sign in to comment.