Run all the scripts with nohup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Assert we are on the root folder | |
if [ ! -d "contracts" ]; then | |
echo "error: script needs to be run from project root './tools/run-all-nohup.sh'" | |
exit 1 | |
fi | |
# Exec the run all script with nohup | |
nohup sh tools/run-all.sh > tools/logs/security-analysis.log 2>&1 & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment