mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-02 16:49:10 +00:00
7 lines
140 B
Bash
Executable File
7 lines
140 B
Bash
Executable File
#! /bin/bash
|
|
|
|
if [ "$TRAVIS_BRANCH" == "master" ]; then
|
|
mvn -U package
|
|
else
|
|
mvn -Dbuild.version="-RC-$TRAVIS_BUILD_ID" -U package
|
|
fi |