Skip to content

Commit

Permalink
Merge pull request #46 from hdumcke/fix_release_test
Browse files Browse the repository at this point in the history
fixed is-release test
  • Loading branch information
mangdangroboticsclub authored Jul 19, 2023
2 parents 759a557 + dbd196d commit 2e3a96d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ echo BSP_VERSION=\"$(cd ~/mini_pupper_bsp; ./get-version.sh)\" >> ~/mini-pupper-
cd ~/mini_pupper_bsp
TAG_COMMIT=$(git rev-list --abbrev-commit --tags --max-count=1)
TAG=$(git describe --abbrev=0 --tags ${TAG_COMMIT} 2>/dev/null || true)
BSP_VERSION=./get-version.sh
if [ "v$BSP_VERSION" == "TAG" ]
BSP_VERSION=$(./get-version.sh)
if [ "v$BSP_VERSION" == "$TAG" ]
then
echo IS_RELEASE=YES >> ~/mini-pupper-release
else
Expand Down

0 comments on commit 2e3a96d

Please sign in to comment.