-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·59 lines (39 loc) · 1.65 KB
/
build.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
#!/bin/bash
############################################################
# REBUILD DIST FOLDER
############################################################
if [[ -d "dist" ]]; then
rm -r "dist"
fi
if [[ ! -d "dist" ]]; then
mkdir dist
fi
############################################################
# ADD ALL BASH SCRIPTS IN ONE FILE
############################################################
echo "#!/bin/bash" >> dist/umac.sh
echo "" >> dist/umac.sh
./src/main.sh build >> dist/umac.sh
############################################################
# CHANGE PERMS
############################################################
chmod a+x dist/umac.sh
############################################################
# COMPILATE TO BINARY
############################################################
shc -f dist/umac.sh -o dist/umac
############################################################
# CHANGE PERMS AGAIN
############################################################
chmod a+x dist/*
############################################################
# ZIP BINARY
############################################################
cd dist
zip umac.zip umac
cd ..
############################################################
# CHANGE PERMS AGAIN
############################################################
chmod a+x dist/*
############################################################