Browse Source

new installation process

main
pvincent 3 weeks ago
parent
commit
30e2a650eb
  1. 6
      install.sh

6
install.sh

@ -59,5 +59,9 @@ set -Eeuo pipefail
assert_supported_distro
sudo_root
deployment_type_adjective="${1:-installed}"
if once_installed; then upgrade; else install; fi
[[ $deployment_type_adjective == 'installed' ]] && exec bash -l
if [[ $deployment_type_adjective == 'installed' ]]; then
exec bash -l
fi
Loading…
Cancel
Save