~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion] andreijiroh.dev
zensical mkdocs-material website
at main 319 B view raw
1#!/usr/bin/env bash 2 3export DIRENV_WARN_TIMEOUT=0 4 5if [[ $DEBUG != "" ]]; then 6 set -x 7fi 8 9if command -v devenv >> /dev/null; then 10 eval "$(devenv direnvrc)" 11 use devenv 12else 13 echo "error: Install devenv first (https://devenv.sh) and then run 'direnv reload'" 14 return 1 15fi 16 17if [[ $DEBUG != "" ]]; then 18 set +x 19fi