Skip to content
Snippets Groups Projects
Commit 69092674 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixed a bug in .travis.yml

parent f07f4fba
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ if (versionPropsFile.exists() && versionPropsFile.canRead()) {
} else {
// Why 187? Because that’s the last build number of our old build system before
// we switched to travis
versionBuild = 187 + System.getenv("TRAVIS_JOB_ID")
versionBuild = Integer.valueOf(System.getenv("TRAVIS_JOB_ID")) + 187
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment