From f96f095762d9ff64bea8bc579e0bef222f72eeaf Mon Sep 17 00:00:00 2001 From: gh2o Date: Sun, 13 Jul 2014 21:33:29 -0700 Subject: [PATCH] reorder code again --- install.sh | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/install.sh b/install.sh index c72f277..9e2db2d 100755 --- a/install.sh +++ b/install.sh @@ -4,15 +4,6 @@ archlinux_mirror="https://mirrors.kernel.org/archlinux/" preserve_home_directories=true -set -eu -set -o pipefail -shopt -s nullglob -shopt -s dotglob - -export LC_ALL=C -export LANG=C -unset LANGUAGE - stdin_symlink="$(readlink /dev/fd/0)" if [ "${stdin_symlink#pipe:}" != "${stdin_symlink}" ]; then echo "This script must be run from a file. Exiting." >&2 @@ -22,8 +13,18 @@ fi if [ -n "${POSIXLY_CORRECT}" ] || [ -z "${BASH_VERSION}" ]; then unset POSIXLY_CORRECT exec bash "$0" "$@" + exit 1 fi +set -eu +set -o pipefail +shopt -s nullglob +shopt -s dotglob + +export LC_ALL=C +export LANG=C +unset LANGUAGE + declare -A dependencies dependencies[pacman]=x