botv12/launch.sh
2024-10-20 14:22:22 -04:00

6 lines
No EOL
90 B
Bash
Executable file

#!/bin/bash
while [ true ];
do node index.js;
if [ $? -eq 1 ]; then exit; fi
sleep 6;
done