diff options
author | Christopher Baines <mail@cbaines.net> | 2016-09-04 23:28:34 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2016-09-04 23:28:34 +0100 |
commit | 4d22bc5da177188a4dcae2a116c9efa2603b38b4 (patch) | |
tree | 863b401e4b94ab78b610412b8130b43a4780b32c /pre-inst-env | |
download | guix-python-integration-project-4d22bc5da177188a4dcae2a116c9efa2603b38b4.tar guix-python-integration-project-4d22bc5da177188a4dcae2a116c9efa2603b38b4.tar.gz |
Initial commit
Diffstat (limited to 'pre-inst-env')
-rwxr-xr-x | pre-inst-env | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pre-inst-env b/pre-inst-env new file mode 100755 index 0000000..7907f51 --- /dev/null +++ b/pre-inst-env @@ -0,0 +1,12 @@ +#!/bin/sh + +GUILE_LOAD_PATH=".:$GUILE_LOAD_PATH" +export GUILE_LOAD_PATH + +GUIX_PACKAGE_PATH="$GUILE_LOAD_PATH" +export GUIX_PACKAGE_PATH + +GUILE_WARN_DEPRECATED="detailed" +export GUILE_WARN_DEPRECATED + +exec "$@" |