blob: 47ab3f4b6a2a9c05f41dbe44307285c327810e65 (
about) (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# Helper script for building from Git, without needing to `guix pull`.
GUILE_LOAD_COMPILED_PATH="$(pwd -P)${GUILE_LOAD_COMPILED_PATH:+:}$GUILE_LOAD_COMPILED_PATH"
GUILE_LOAD_PATH="$(pwd -P)${GUILE_LOAD_PATH:+:}$GUILE_LOAD_PATH"
export GUILE_LOAD_COMPILED_PATH GUILE_LOAD_PATH
exec "$@"
|