Skip to content

Commit

Permalink
download.sh: Fix as per @publicarray review
Browse files Browse the repository at this point in the history
  • Loading branch information
th0ma7 committed Nov 20, 2021
1 parent 841163e commit 60cda0e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/actions/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ build_packages="${NOARCH_PACKAGES} ${ARCH_PACKAGES}"

if [ -z "${build_packages}" ]; then
echo "===> No wheels to download. <==="
exit 0
else
for package in ${build_packages}
do
echo "===> Download wheels: ${package}"
make -C spk/${package} download_wheel
done
fi
for package in ${build_packages}
do
echo "===> Download wheels: ${package}"
make -C spk/${package} download_wheel
done

echo ""

0 comments on commit 60cda0e

Please sign in to comment.