mirror of https://github.com/fredrikekre/Runic.jl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
528 B
13 lines
528 B
#!/bin/sh |
|
|
|
# A simple driver script for invoking Runic's main function. Put this script |
|
# somewhere in PATH and make sure it is executable. The script expects Runic to |
|
# be installed in the `@runic` shared environment and julia to be available in |
|
# PATH. See installation instructions in the repository README for more |
|
# details. |
|
# |
|
# Repository: https://github.com/fredrikekre/Runic.jl |
|
# SPDX-License-Identifier: MIT |
|
|
|
export JULIA_LOAD_PATH="@runic" |
|
exec julia --startup-file=no -e 'using Runic; exit(Runic.main(ARGS))' -- "$@"
|
|
|