-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall
More file actions
64 lines (42 loc) · 691 Bytes
/
Copy pathinstall
File metadata and controls
64 lines (42 loc) · 691 Bytes
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
#!/bin/bash
source "$DOTPATH"/bin/util/logger.sh
source "$DOTPATH"/bin/util/echo_task.sh
echo_start () {
bash "$DOTPATH"/bin/util/say_dotfiles.sh
}
echo_end () {
bash "$DOTPATH"/bin/util/say_yeah.sh
}
pull () {
echo_task "PULL"
echo_command "make pull"
make pull
echo_empty
}
install_package () {
echo_task "INSTALL PACKAGE"
echo_command "make pkg"
make pkg
echo_empty
}
deploy_dotfiles () {
echo_task "DEPLOY DOTFILES"
echo_command "make deploy"
make deploy
echo_empty
}
dep () {
echo_task "DEP"
echo_command "make dep"
make dep
echo_empty
}
main () {
echo_start
pull
install_package
deploy_dotfiles
dep
echo_end
}
main