sanetrade/.direnv/bin/nix-direnv-reload

20 lines
725 B
Text
Raw Permalink Normal View History

2024-06-07 14:47:02 +00:00
#!/usr/bin/env bash
set -e
if [[ ! -d "/mnt/k/minky/trading/sdk" ]]; then
echo "Cannot find source directory; Did you move it?"
echo "(Looking for "/mnt/k/minky/trading/sdk")"
echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
exit 1
fi
# rebuild the cache forcefully
_nix_direnv_force_reload=1 direnv exec "/mnt/k/minky/trading/sdk" true
# Update the mtime for .envrc.
# This will cause direnv to reload again - but without re-building.
touch "/mnt/k/minky/trading/sdk/.envrc"
# Also update the timestamp of whatever profile_rc we have.
# This makes sure that we know we are up to date.
touch -r "/mnt/k/minky/trading/sdk/.envrc" "/mnt/k/minky/trading/sdk/.direnv"/*.rc