env/bootstrap.sh

18 lines
276 B
Bash

#!/bin/bash
# Ensuring steps are defined.
. ./steps.sh
TOTAL_STEPS=5
# Refer to steps.sh for step definition.
bootstrap() {
ensure_apt_up_to_date
ensure_apt_dependencies
ensure_nvm
inject_shell_configuration
inject_vim_configuration
}
bootstrap
return