8 lines
170 B
Bash
8 lines
170 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
git submodule update --recursive --init && ./scripts/applyPatches.sh
|
||
|
if [ "$1" == "--jar" ]; then
|
||
|
pushd FlameCord-Proxy
|
||
|
mvn clean package
|
||
|
fi
|