mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-03 00:37:55 +00:00
7 lines
125 B
Bash
7 lines
125 B
Bash
#!/bin/sh
|
|
|
|
if [ "$TRAVIS_BRANCH" == "master" ]; then
|
|
mvn -U package
|
|
else
|
|
mvn -Dversion="$TRAVIS_COMMIT" -U package
|
|
fi |