From 342fe31cebcc945bf9f2ead1a6b228e8a2c9a2ab Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Sun, 23 Feb 2020 21:15:44 -0500 Subject: [PATCH] Move full version check below the version write --- .travis/deploy_script.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis/deploy_script.sh b/.travis/deploy_script.sh index 67a0aa11..4513b463 100755 --- a/.travis/deploy_script.sh +++ b/.travis/deploy_script.sh @@ -26,12 +26,10 @@ else # This now includes the pre-release version, so "-dev" by default VERSION=${BASE_VERSION} - FULL_VERSION=$(php artisan phpvms:version) - - echo "Writing version as ${VERSION}" # Don't pass in a version here, just write out the latest hash php artisan phpvms:version --write "${VERSION}" + FULL_VERSION=$(php artisan phpvms:version) fi FILE_NAME="phpvms-${VERSION}"