-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
46 lines (34 loc) · 857 Bytes
/
build.sh
File metadata and controls
46 lines (34 loc) · 857 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
#!/bin/bash
# Script created by the tool UsiScript (http://www.usiscript.com/)
#We check if the folder build exist
#If not, we create it
if [ ! -d build ]; then
echo "The folder build doesn't exist. We create it"
mkdir build
fi
rm -r build/*
#We check if the folder build/BBBW1 exist
#If not, we create it
if [ ! -d build/BBBW1 ]; then
mkdir build/BBBW1
fi
#We check if the folder build/BBBW2 exist
#If not, we create it
if [ ! -d build/BBBW2 ]; then
mkdir build/BBBW2
fi
#We check if the folder build/BBBW1 exist
#If not, we create it
if [ ! -d build/BBBW3 ]; then
mkdir build/BBBW3
fi
#We check if the folder build/BBBW4 exist
#If not, we create it
if [ ! -d build/BBBW4 ]; then
mkdir build/BBBW4
fi
cp -r BBBW/static build/BBBW1
cp BBBW/BBBW1* build/BBBW1
cp BBBW/BBBW2* build/BBBW2
cp BBBW/BBBW3* build/BBBW3
cp BBBW/BBBW4* build/BBBW4