mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-03-11 08:54:34 +00:00
Remove lsof dependency in replit deploy (#569)
Use `killall -q python3` instead
This commit is contained in:
parent
3d8da1db58
commit
84b5987ac5
1 changed files with 2 additions and 2 deletions
4
.replit
4
.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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue