-
Notifications
You must be signed in to change notification settings - Fork 2
/
run.sh
executable file
·37 lines (34 loc) · 2.15 KB
/
run.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
#!/bin/bash
# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * #
# #
# __ __ ______ ______ ________ _______ #
# / \ / | / \ / \ / |/ \ #
# $$ \ $$ |/$$$$$$ |/$$$$$$ |$$$$$$$$/ $$$$$$$ | #
# $$$ \$$ |$$ | $$/ $$ | $$ | $$ | $$ |__$$ | #
# $$$$ $$ |$$ | $$ | $$ | $$ | $$ $$< #
# $$ $$ $$ |$$ | __ $$ | $$ | $$ | $$$$$$$ | #
# $$ |$$$$ |$$ \__/ |$$ \__$$ | $$ | $$ |__$$ | #
# $$ | $$$ |$$ $$/ $$ $$/ $$ | $$ $$/ #
# $$/ $$/ $$$$$$/ $$$$$$/ $$/ $$$$$$$/ #
# #
# #
# New Coders on the Block #
# —————————————————————————————————————————————————————————————————————— #
# Mpeerdem | https://github.com/Maqrkk #
# Rpet | https://github.com/rpet91 #
# Mraasvel | https://github.com/mraasvel #
# Ikole | https://github.com/K1ngmar #
# Nvan-aac | https://github.com/vanaacken #
# #
# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * #
if [ "$1" == "-clean" ]; then
bash src/scripts/clean.sh
elif [ "$1" == "-fclean" ]; then
bash src/scripts/clean.sh -f
fi
# create symlink to goinfre
if [ "$1" == "-l" ]; then
bash src/scripts/create_symlink.sh
fi
# run docker compose
docker-compose up --build