mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2025-06-24 13:26:11 +00:00
also update contents of the humans.txt file btw Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
17 lines
289 B
Bash
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
|