We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3663d45 commit a94df95Copy full SHA for a94df95
upload.sh
@@ -2,8 +2,8 @@
2
kill -9 $(ps aux | grep 'src.burn.scan' | grep -v grep | awk '{print $2}')
3
kill -9 $(ps aux | grep '[u]pload' | awk '{print $2}')
4
# start new process
5
-nohup python -m src.burn.scan > ./logs/runtime/scan-$(date +%Y%m%d-%H%M%S).log 2>&1 &
6
-nohup python -m src.upload.upload > ./logs/runtime/upload-$(date +%Y%m%d-%H%M%S).log 2>&1 &
+nohup python3 -m src.burn.scan > ./logs/runtime/scan-$(date +%Y%m%d-%H%M%S).log 2>&1 &
+nohup python3 -m src.upload.upload > ./logs/runtime/upload-$(date +%Y%m%d-%H%M%S).log 2>&1 &
7
# Check if the last command was successful
8
if [ $? -eq 0 ]; then
9
echo "Success! Please ignore the 'kill: usage....' if it displays"
0 commit comments