Zachary Hall
ae74999276
Some checks failed
Build / build-gentoo (push) Failing after 1m25s
Build / download-system-deps (push) Successful in 3m44s
Build / get-source-code (push) Successful in 6m52s
Build / build-appimage (push) Successful in 3m29s
Build / build-android (push) Failing after 2m52s
Build / build-windows (push) Failing after 6m42s
17 lines
No EOL
272 B
Bash
Executable file
17 lines
No EOL
272 B
Bash
Executable file
#!/bin/bash
|
|
source venv/bin/activate
|
|
PIDFILE="$(mktemp)"
|
|
looper() {
|
|
echo $$ > "$PIDFILE"
|
|
./build/default/looper -m
|
|
rm "$PIDFILE" -f
|
|
}
|
|
./build.sh || exit $?
|
|
looper &
|
|
tl &
|
|
while [ -f "$PIDFILE" ]; do
|
|
sleep 1
|
|
done
|
|
for i in $(jobs -p); do
|
|
kill -HUP $i
|
|
done |