Skip to content

Commit

Permalink
Remove lsof dependency in replit deploy (#569)
Browse files Browse the repository at this point in the history
Use `killall -q python3` instead
  • Loading branch information
Albonycal committed Dec 16, 2021
1 parent 3d8da1d commit 84b5987
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .replit
@@ -1,3 +1,3 @@
language = "bash"
run = "kill $(lsof -t -i:5000) > /dev/null 2>&1; pip install -r requirements.txt && ./run"
onBoot = "kill $(lsof -t -i:5000) > /dev/null 2>&1; pip install -r requirements.txt && ./run"
run = "killall -q python3 > /dev/null 2>&1; pip install -r requirements.txt && ./run"
onBoot = "killall -q python3 > /dev/null 2>&1; pip install -r requirements.txt && ./run"

0 comments on commit 84b5987

Please sign in to comment.