Add some logging
parent
2b69fa6622
commit
ba07678b31
|
@ -84,6 +84,7 @@ case $cmd in
|
||||||
if [[ -n $DIRENV_DIR ]]; then
|
if [[ -n $DIRENV_DIR ]]; then
|
||||||
# run self in clean environment (i.e. outside of the current direnv
|
# run self in clean environment (i.e. outside of the current direnv
|
||||||
# environment)
|
# environment)
|
||||||
|
echo "Switching to clean environment"
|
||||||
exec direnv exec /proc "${BASH_SOURCE[0]}" "$@"
|
exec direnv exec /proc "${BASH_SOURCE[0]}" "$@"
|
||||||
fi
|
fi
|
||||||
echo "Re-creating cache"
|
echo "Re-creating cache"
|
||||||
|
@ -91,6 +92,7 @@ case $cmd in
|
||||||
dumpEnv > "${cacheFile}.pre"
|
dumpEnv > "${cacheFile}.pre"
|
||||||
source <(direnv stdlib)
|
source <(direnv stdlib)
|
||||||
if [[ .envrc -nt ${cacheFile}.recipe ]]; then
|
if [[ .envrc -nt ${cacheFile}.recipe ]]; then
|
||||||
|
echo "Re-creating recipe"
|
||||||
direnv exec . true > /dev/null
|
direnv exec . true > /dev/null
|
||||||
fi
|
fi
|
||||||
source "${cacheFile}.recipe"
|
source "${cacheFile}.recipe"
|
||||||
|
|
Loading…
Reference in New Issue