botv12/launch.sh

6 lines
90 B
Bash
Raw Permalink Normal View History

2024-10-20 14:22:22 -04:00
#!/bin/bash
while [ true ];
do node index.js;
if [ $? -eq 1 ]; then exit; fi
sleep 6;
done