File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 92
92
93
93
# default init, https://stackoverflow.com/a/28085062/194609
94
94
: " ${CONFIG:= config.yml} "
95
- if [ -f $CONFIG ]; then
95
+ if [[ -f $CONFIG && $CONFIG != config.yml ] ]; then
96
96
echo " copying non-default config file: $CONFIG "
97
97
cp $CONFIG config.yml
98
98
fi
@@ -146,8 +146,8 @@ function ensureMaven {
146
146
if [ ! -f " $MAVEN_HOME /bin/mvn" ]; then
147
147
echo " No Maven found in the PATH. Now downloading+installing it to $MAVEN_HOME "
148
148
cd " $GH_HOME "
149
- MVN_PACKAGE=apache-maven-3.5.0
150
- wget -O maven.zip http://archive.apache.org/dist/maven/maven-3/3.5.0 /binaries/$MVN_PACKAGE -bin.zip
149
+ MVN_PACKAGE=apache-maven-3.6.3
150
+ wget -O maven.zip http://archive.apache.org/dist/maven/maven-3/3.6.3 /binaries/$MVN_PACKAGE -bin.zip
151
151
unzip maven.zip
152
152
mv $MVN_PACKAGE maven
153
153
rm maven.zip
You can’t perform that action at this time.
0 commit comments