#justalpinethings

This commit is contained in:
2022-08-18 19:55:18 -06:00
parent 99049325d3
commit 6389d36192
4 changed files with 17 additions and 1 deletions

View File

@ -1,4 +1,16 @@
#!/bin/zsh
while [[ $# -gt 0 ]]
do
case $1 in
--no-compile-vim ) NO_COMPILE_VIM=1 ;;
--ci ) export CI=1 ;;
--force-root ) FORCE_ROOT=1 ;;
--no-fluff )
NO_COMPILE_VIM=1
;;
esac
shift 1
done
source ${0:a:h}/requirements.zsh || exit 1
################################################################################