You've already forked TrickyStore
mirror of
https://github.com/5ec1cff/TrickyStore.git
synced 2025-09-06 06:37:07 +00:00
15 lines
124 B
Bash
15 lines
124 B
Bash
DEBUG=@DEBUG@
|
|
|
|
MODDIR=${0%/*}
|
|
|
|
cd $MODDIR
|
|
|
|
(
|
|
while [ true ]; do
|
|
./daemon
|
|
if [ $? -ne 0 ]; then
|
|
exit 1
|
|
fi
|
|
done
|
|
) &
|