summaryrefslogtreecommitdiff
path: root/pre-inst-env
blob: 79afb4f083e64be2a50fe185f0886da921f4effc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

panther_dir="$(dirname "$(realpath "$0")")"

GUILE_LOAD_PATH="${panther_dir}${GUILE_LOAD_PATH:+:}${GUILE_LOAD_PATH}"
GUIX_PACKAGE_PATH="${panther_dir}${GUIX_PACKAGE_PATH:+:}${GUIX_PACKAGE_PATH}"

export GUILE_LOAD_PATH GUIX_PACKAGE_PATH

echo $GUILE_LOAD_PATH
echo $GUIX_PACKAGE_PATH

exec "$@"