Skip to content

Commit

Permalink
fix(FEC-12526): add debug to analyze player version not updated (#564)
Browse files Browse the repository at this point in the history
* adding log to check possible solution for versioning issue
  • Loading branch information
giladna authored Sep 22, 2022
1 parent 04b163b commit 09ef6a9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/after_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ HTTP_SUCCESS=false
currentVersion=$(npx -c 'echo "$npm_package_version"')
echo "$currentVersion"

TAGGED_BRANCH_FIXED=$(git branch --contains "$TRAVIS_COMMIT" --list "master" | sed s/^\*//g | xargs)
echo "TAGGED_BRANCH_FIXED - $TAGGED_BRANCH_FIXED"
TAGGED_BRANCH=$(git branch --contains "$TRAVIS_COMMIT" --list "master")
echo "TAGGED_BRANCH - $TAGGED_BRANCH"
UPDATE_SCHEMA=true
if [ "${TAGGED_BRANCH//[[:blank:]]/}" != "master" ]; then
UPDATE_SCHEMA=false
Expand Down

0 comments on commit 09ef6a9

Please sign in to comment.