mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-28 11:05:17 +03:00
17 lines
417 B
Bash
Executable File
17 lines
417 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e # exit on any error
|
|
|
|
if [ "$OS" = windows ] || [ "$OS" = Windows_NT ]; then
|
|
DIR=$(dirname "$(readlink -f -- "$0" || cygpath -a -- "$0")")
|
|
PATH=$DIR/idris2_app:$PATH
|
|
elif [ "$(uname)" = Darwin ]; then
|
|
DIR=$(zsh -c 'printf %s "$0:A:h"' "$0")
|
|
else
|
|
DIR=$(dirname "$(readlink -f -- "$0")")
|
|
fi
|
|
|
|
export LD_LIBRARY_PATH="$DIR/idris2_app:$LD_LIBRARY_PATH"
|
|
|
|
"$DIR/idris2_app/idris2-boot" "$@"
|