mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-11-28 11:05:17 +03:00
6 lines
221 B
Bash
Executable File
Vendored
6 lines
221 B
Bash
Executable File
Vendored
#!/bin/sh
|
|
DIR="`realpath $0`"
|
|
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:`dirname "$DIR"`/"idris2_app""
|
|
export PATH="`dirname "$DIR"`/"idris2_app":$PATH"
|
|
${SCHEME} --script "`dirname $DIR`"/"idris2_app/idris2-boot.so" "$@"
|