13 lines
208 B
Bash
Executable File
13 lines
208 B
Bash
Executable File
#!/bin/bash -e
|
|
# OTHER REQUIRED ENVIRONMENT VARIABLES:
|
|
|
|
cd "../../"
|
|
|
|
cd "bom"
|
|
mvn -B -Dtdlight.build.type=legacy clean package
|
|
mvn -B -Dtdlight.build.type=standard clean package
|
|
cd "../"
|
|
|
|
echo "Done."
|
|
exit 0
|