Skip to content

Commit

Permalink
try package script reading from VERSION.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
jiakf committed Apr 1, 2024
1 parent a80abf3 commit b70949a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/package
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,10 @@ pip install -U PyInstaller
pip install --upgrade setuptools

# Get version
VERSION=$(python -c "
import gdc_client.version
print(gdc_client.version.__version__)")
# VERSION=$(python -c "
# import gdc_client.version
# print(gdc_client.version.__version__)")
VERSION=$(cat VERSION.txt)

echo "Creating ${TARGET_ENVIRONMENT} package for version ${VERSION}..."

Expand Down

0 comments on commit b70949a

Please sign in to comment.