mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-01-08 03:29:54 +00:00
7677db7633
* .gitattributes: New file. * .guix-authorizations: New file. * .guix-channel: New file. * LICENSES/GPL-3.0.txt: New file. * pre-inst-env: New file.
11 lines
287 B
Bash
Executable File
11 lines
287 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
abs_rosenthal_dir="$(dirname "$(realpath "$0")")"
|
|
|
|
GUILE_LOAD_PATH="${abs_rosenthal_dir}${GUILE_LOAD_PATH:+:}${GUILE_LOAD_PATH}"
|
|
GUIX_PACKAGE_PATH="${abs_rosenthal_dir}${GUIX_PACKAGE_PATH:+:}${GUIX_PACKAGE_PATH}"
|
|
|
|
export GUILE_LOAD_PATH GUIX_PACKAGE_PATH
|
|
|
|
exec "$@"
|