blob: 4e544a3f69c0e32a6172eff94d629716ba0411f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Unset the Guile paths to avoid mixing Guile major versions
export GUILE_LOAD_PATH=""
export GUILE_LOAD_COMPILED_PATH=""
use guix --no-grafts -l guix-dev.scm
export GUILE_LOAD_COMPILED_PATH="$PWD:$PWD/tests:$GUILE_LOAD_COMPILED_PATH"
export GUILE_LOAD_PATH="$PWD:$GUILE_LOAD_PATH"
export PATH="$PWD/scripts:$PATH"
if [ -f .local.envrc ]; then
source_env .local.envrc
fi
|