moment/run_live_reload.sh

9 lines
153 B
Bash
Raw Normal View History

#!/usr/bin/env sh
while true; do
clear
qml src/qml/Window.qml -- --debug
exit_code="$?"
if [ "$exit_code" != 231 ]; then break; fi
done