blob: f4cb5625c86b7956305d58db493614debc4fd588 (
plain)
1
2
3
4
5
6
7
8
|
#!/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 "$@"
|