Rosenthal/pre-inst-env
Hilton Chain 7677db7633
Initial commit.
* .gitattributes: New file.
* .guix-authorizations: New file.
* .guix-channel: New file.
* LICENSES/GPL-3.0.txt: New file.
* pre-inst-env: New file.
2022-11-25 14:50:51 +08:00

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 "$@"