Skip to content

Commit

Permalink
Merge pull request #60 from jongough/release_test
Browse files Browse the repository at this point in the history
Update to look for /master, in git show to hopefully get master branc…
  • Loading branch information
jongough authored May 6, 2020
2 parents cf32b99 + 7379329 commit 2ffc9b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ set(PACKAGE "testplugin")

set(VERSION_MAJOR "1")
set(VERSION_MINOR "0")
set(VERSION_PATCH "87")
set(VERSION_TWEAK "1")
set(VERSION_PATCH "88")
set(VERSION_TWEAK "0")
set(VERSION_DATE "06/05/2020")
set(OCPN_MIN_VERSION "ov50")
set(OCPN_API_VERSION_MAJOR "1")
Expand Down
2 changes: 1 addition & 1 deletion cmake/in-files/cloudsmith-upload.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ if [ "$BUILD_TAG" = "" ] && [ "$tag" != "" ]; then
fi
if [ "$BUILD_BRANCH" = "" ]; then
build_commit=$(git show -s --format=%d $BUILD_TAG)
is_master=$(echo $build_commit | awk '/ master/ {print}')
is_master=$(echo $build_commit | awk '/\/master/ {print}')
if [ "$is_master" != "" ]; then
BUILD_BRANCH="master"
fi
Expand Down

0 comments on commit 2ffc9b4

Please sign in to comment.