dotwryn/setup/run

43 lines
1.0 KiB
Plaintext
Raw Normal View History

#!/bin/zsh
2022-08-19 02:21:32 +00:00
cd "${0:a:h}"
OVERWRITE_EXISTING=0
2022-08-19 01:55:18 +00:00
while [[ $# -gt 0 ]]
do
case $1 in
--force-root ) FORCE_ROOT=1 ;;
--ci ) export CI=1 ;;
--overwrite ) OVERWRITE_EXISTING=1 ;;
--no-compile-dmenu ) COMPILE_DMENU=0 ;;
--min )
MIN=1
COMPILE_DMENU=0
2022-08-19 01:55:18 +00:00
;;
esac
shift 1
done
2022-08-23 04:05:49 +00:00
source ./requirements.zsh || exit 1
################################################################################
2024-08-16 15:41:26 +00:00
LOGFILE="${HOME}/dotwryn-install.txt"
2024-08-16 15:41:26 +00:00
STATUS "installation start : $(date)" 2>> "${LOGFILE}"
{
SETUP__OS || FAIL 1 'failed to set up os-dependencies (see above)'
SETUP__GIT || FAIL 2 'failed to set up git (see above)'
SETUP__CONFIG || FAIL 3 'failed to set up program configuration (see above)'
2024-08-16 15:41:26 +00:00
} 2>&1 | tee --append "${LOGFILE}"
2024-08-16 15:41:26 +00:00
STATUS "installation complete: $(date)" 2>> "${LOGFILE}"
################################################################################
2024-08-16 15:41:26 +00:00
[[ ${ERRORS} -eq 0 ]] || {
yN 'keep logfile?' \
|| { rm "${LOGFILE}" || ERROR "unable to remove '${LOGFILE}'" }
}
2024-08-13 18:46:20 +00:00
SUCCESS "\n.wryn setup complete; have a nice day :)\n "