Skip to content

Commit

Permalink
fix Artifactory redirect curl (#152)
Browse files Browse the repository at this point in the history
Signed-off-by: James Struga <[email protected]>
Co-authored-by: James Struga <[email protected]>
  • Loading branch information
struga0258 and James Struga authored Jan 31, 2025
1 parent a942005 commit 97f71fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion container/download-zlux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ for i in "${!URLS[@]}";
do
# echo package zlux/"${PACKAGES[i]}".tar
echo url "${URLS[i]}"
curl -s "${URLS[i]}" -o files/zlux/"${PACKAGES[i]}".tar && echo "${PACKAGES[i]} done" &
curl -sL "${URLS[i]}" -o files/zlux/"${PACKAGES[i]}".tar && echo "${PACKAGES[i]} done" &
done
wait

Expand Down
2 changes: 1 addition & 1 deletion container/pull-zowe-install-artifacts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

if [ -z "$ZLUX_BRANCH" ]; then
echo " Default branch will be staging, to change branch please set environment ZLUX_BRANCH. Set with for example export ZLUX_BRANCH=..."
export ZLUX_BRANCH="v2.x/staging"
export ZLUX_BRANCH="v3.x/staging"
fi

set -e
Expand Down

0 comments on commit 97f71fb

Please sign in to comment.