-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.sh
executable file
·30 lines (27 loc) · 992 Bytes
/
start.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
#!/usr/bin/env bash
echo "################################################################"
echo "Do you want to get the last github code in? - Internet required"
echo "It will overwrite anything you may have changed"
echo "Answer with y/Y or n/N"
echo "################################################################"
echo
read response
if [[ "$response" == [yY] ]]; then
git reset --hard
git pull
else
echo "################################################################"
echo "Nothing has been changed."
echo "################################################################"
fi
echo
echo "################################################################"
echo "Making all .sh files executable"
echo "################################################################"
echo
chmod +x *.sh
echo "################################################################"
echo "Starting alis.sh"
echo "################################################################"
echo
./alis.sh