-
Notifications
You must be signed in to change notification settings - Fork 5
/
install
executable file
·60 lines (49 loc) · 896 Bytes
/
install
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
#!/usr/bin/env bash
#
# Perform an install of all developer dependencies.
#
set -o errexit
set -o nounset
set -o pipefail
log_info() {
printf "[INFO]: %s\n" "$*"
}
log_warn() {
printf "[WARN]: %s\n" "$*" >&2
}
log_error() {
printf "[ERROR]: %s\n" "$*" >&2
}
CURRENT_SCRIPT_PATH="$(
cd "$(dirname "$0")"
pwd -P
)"
# Validate that the current OS is supported
case "${OSTYPE}" in
darwin* | linux*)
:
# continue
;;
*)
:
log_error "Unsupported OS: '${OSTYPE}'"
exit 1
;;
esac
#
# Install dependencies
#
case "${OSTYPE}" in
darwin*)
:
"${CURRENT_SCRIPT_PATH}/macos/install"
;;
linux*)
:
"${CURRENT_SCRIPT_PATH}/linux/install"
;;
esac
"${CURRENT_SCRIPT_PATH}/link-dotfiles"
printf "====================\n"
printf "Installation complete. You should now reboot and run \`./post-install\`.\n"
printf "====================\n"