Skip to content

Commit

Permalink
Fix package script
Browse files Browse the repository at this point in the history
  • Loading branch information
krutten committed Jul 4, 2024
1 parent 1bfdca9 commit df22881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/package
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ declare git_url git_tag work_dir
declare -x TAG NODE_VERSION TMP_DIR

git_url="https://github.com/cloudfoundry-community/stratos.git"
git_tag="${TAG:-master}}"
git_tag="${TAG:-master}"
work_dir="${PWD}"
NODE_VERSION="${NODE_VERISON:-20.13.1}"
TMP_DIR=/tmp
Expand Down Expand Up @@ -108,7 +108,7 @@ echo "web: ./deploy/cloud-foundry/start.sh" > "${build_dir}/Procfile"

ls -lah "${build_dir}"
cd "${build_dir}"
zip -r "${work_dir}}/stratos-ui-packaged.zip" ./*
zip -r "${work_dir}/stratos-ui-packaged.zip" ./*
cd "${work_dir}"

exit 0

0 comments on commit df22881

Please sign in to comment.