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