Always recreate recipe by evaluating .envrc
evaluating .envrc (not the cached section) should not be expensive
parent
da4b0586e5
commit
20b2dfac7c
|
@ -91,10 +91,8 @@ case $cmd in
|
|||
mkdir -p "$(dirname ${cacheFile})"
|
||||
dumpEnv > "${cacheFile}.pre"
|
||||
source <(direnv stdlib)
|
||||
if [[ .envrc -nt ${cacheFile}.recipe ]]; then
|
||||
echo "Re-creating recipe"
|
||||
direnv exec . true > /dev/null
|
||||
fi
|
||||
echo "Re-creating recipe"
|
||||
direnv exec . true > /dev/null
|
||||
source "${cacheFile}.recipe"
|
||||
dumpEnv > "${cacheFile}.post"
|
||||
diffEnvs "${cacheFile}.pre" "${cacheFile}.post" > "$cacheFile"
|
||||
|
|
Loading…
Reference in New Issue