mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2026-02-20 11:04:32 +00:00
9 lines
233 B
Bash
Executable File
9 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
|
|
load_path="$(dirname "$(realpath "$0")")/modules"
|
|
|
|
export GUILE_LOAD_PATH="${load_path}${GUILE_LOAD_PATH:+:}${GUILE_LOAD_PATH}"
|
|
export GUIX_PACKAGE_PATH="${load_path}${GUIX_PACKAGE_PATH:+:}${GUIX_PACKAGE_PATH}"
|
|
|
|
exec "$@"
|