diff options
Diffstat (limited to 'Binaries/dafny-server')
-rwxr-xr-x | Binaries/dafny-server | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Binaries/dafny-server b/Binaries/dafny-server new file mode 100755 index 00000000..2fd0d202 --- /dev/null +++ b/Binaries/dafny-server @@ -0,0 +1,16 @@ +#!/usr/bin/env bash + +MONO=$(which mono) +DAFNYSERVER=$(dirname "${BASH_SOURCE[0]}")/DafnyServer.exe + +if [[ ! -x "$MONO" ]]; then + echo "Error: Dafny requires Mono to run on non-Windows systems." + exit 1 +fi + +if [[ ! -x "$DAFNYSERVER" ]]; then + echo "Error: DafnyServer.exe not found at $DAFNYSERVER." + exit 1 +fi + +"$MONO" "$DAFNYSERVER" "$@" |