website/.envrc
Andrei Jiroh Halili e5048e6f0f
chore(global): update configs as usual
also update contents of the humans.txt file btw

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
2025-06-13 20:09:33 +08:00

17 lines
289 B
Bash

#!/usr/bin/env bash
if [[ $DEBUG != "" ]]; then
set -x
fi
if command -v devenv >> /dev/null; then
eval "$(devenv direnvrc)"
use devenv
else
echo "error: Install devenv first (https://devenv.sh) and then run 'direnv reload'"
return 1
fi
if [[ $DEBUG != "" ]]; then
set +x
fi