diff --git a/bin/configure_software b/bin/configure_software deleted file mode 100755 index c55a9df..0000000 --- a/bin/configure_software +++ /dev/null @@ -1,16 +0,0 @@ -#! /usr/bin/env bash - -# Configures installed software. - -set -o nounset -set -o errexit -set -o pipefail -IFS=$'\n\t' - -SCRIPT_PATH="$MAC_OS_CONFIG_PATH/bin/configure_software" - -if [[ -x "$SCRIPT_PATH" ]]; then - "$SCRIPT_PATH" -else - printf "WARNING: Configure software script does not exist or is not executable.\n" -fi diff --git a/bin/run b/bin/run index 590e7ee..ebc8ee5 100755 --- a/bin/run +++ b/bin/run @@ -42,7 +42,6 @@ while true; do printf " rg: Install Ruby gems.\n" printf " rc: Install Rust crates.\n" printf " d: Apply default settings.\n" - printf " cs: Configure installed software.\n" printf " i: Install all (i.e. executes all of the above steps in order listed).\n" printf " Restore:\n" printf " R: Restore settings from backup.\n" diff --git a/lib/options.sh b/lib/options.sh index b574085..d26112e 100644 --- a/lib/options.sh +++ b/lib/options.sh @@ -32,8 +32,6 @@ process_option() { bin/install_rust_crates;; 'd') bin/apply_default_settings;; - 'cs') - bin/configure_software;; 'i') caffeinate_machine bin/apply_basic_settings @@ -48,7 +46,6 @@ process_option() { bin/install_ruby_gems bin/install_rust_crates bin/apply_default_settings - bin/configure_software clean_work_path;; 'R') caffeinate_machine