-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
executable file
·86 lines (69 loc) · 1.89 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env bash
set -o errexit
set -o pipefail
set -o nounset
[[ ${DEBUG:-} == true ]] && set -o xtrace
declare data_dir="${HOME}/data"
if [[ -d "${data_dir}" ]]; then
echo "SKIP ${data_dir} exists."
else
echo "CREATE ${data_dir}..."
mkdir "${data_dir}"
fi
if [[ -d "${HOME}/data/dotfiles" ]]; then
echo "SKIP ${HOME}/data/dotfiles exists."
else
echo "CREATE cloning kaltepeter/dotfiles to ${HOME}/data/dotfiles..."
# clone http to avoid perm issues
git clone https://github.com/kaltepeter/dotfiles.git "${HOME}/data/dotfiles"
fi
cd "${HOME}/data/dotfiles"
git submodule init
git submodule update
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
log_file="${__dir}/install.log"
# shellcheck disable=SC1090
[[ $(command -v k_custom_lib_loaded) ]] || source "${__dir}/shell/lib.sh"
usage() {
cat <<END
usage: [DEBUG=true] install.sh
Automatically write to .env file and run bootstrap.
-h: show this help message
END
}
while getopts "h" opt; do
case $opt in
h)
usage
exit 0
;;
\?)
exit 1
;;
esac
done
shift $((OPTIND - 1))
if [[ ! -f "${__dir}/.env" ]]; then
typed_message 'CONFIG' "First run. ${__dir}/.env doesn't exist."
fi
input="${__dir}/.env.example"
typed_message 'CONFIG' "writing inputs to ${__dir}/.env file"
while IFS= read -r line; do
[[ ${line} =~ ^#.*s ]] && continue
# shellcheck disable=SC1001
IFS=\= read -r key value <<<"${line}"
# http://compgroups.net/comp.unix.shell/fixing-stdin-inside-a-redirected-loop/400460
grep -q "${key}=" "${__dir}/.env" || (
read -r -p "${key}(${value}): " val </dev/tty
echo "${key}=${val}" >>"${__dir}/.env"
)
done <"$input"
# error "IMPORTANT: edit values and re-run bootstrap." 1
set -o allexport
typed_message 'CONFIG' "setting vars from ${__dir}/.env"
# shellcheck source=/dev/null
source "${__dir}/.env"
set +o allexport
echo "RUN .${__dir}/bootstrap.sh in clean tab to start"
echo ''
exit 0