summaryrefslogtreecommitdiff
path: root/env
diff options
context:
space:
mode:
authorStefan Israelsson Tampe <stefan.itampe@gmail.com>2018-11-06 23:26:25 +0100
committerStefan Israelsson Tampe <stefan.itampe@gmail.com>2018-11-06 23:26:25 +0100
commit4d4de6eecb3917e19a0af616790630a683b43767 (patch)
tree84f4e249a986928dfcba616d32a269900804772c /env
parent9f1bcefabfbfb28cd913b363285675d98e9c622c (diff)
python repo install
Diffstat (limited to 'env')
-rwxr-xr-xenv14
1 files changed, 14 insertions, 0 deletions
diff --git a/env b/env
new file mode 100755
index 0000000..ff7b5e6
--- /dev/null
+++ b/env
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+GUILE_LOAD_PATH=/home/stis/src/python-on-guile/modules:$GUILE_LOAD_PATH
+if test "/home/stis/src/python-on-guile" != "/home/stis/src/python-on-guile"; then
+ GUILE_LOAD_PATH=/home/stis/src/python-on-guile/modules:$GUILE_LOAD_PATH
+fi
+GUILE_LOAD_COMPILED_PATH=/home/stis/src/python-on-guile/modules:$GUILE_LOAD_PATH
+PATH=/home/stis/src/python-on-guile/bin:$PATH
+
+export GUILE_LOAD_PATH
+export GUILE_LOAD_COMPILED_PATH
+export PATH
+
+exec "$@"