mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-13 09:55:35 +03:00
10 lines
158 B
Bash
Executable File
10 lines
158 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
until (stack build && \
|
|
stack exec unison)
|
|
do
|
|
echo "Well that didn't work."
|
|
echo Press any key to re-launch.
|
|
read -n 1
|
|
done
|