drone/GiteaComposerPackage: fix zip argument order

This commit is contained in:
David Hiendl 2022-10-21 03:36:56 +02:00
parent 89180087d6
commit ebf0002750

View File

@ -24,7 +24,7 @@
if [[ "$EXCLUDE_GIT_DIR" == "true" ]]; then
ZIP_EXTRA_ARGS="$ZIP_EXTRA_ARGS -x '*.git*'"
fi
zip -r $ZIP_EXTRA_ARGS $COMPOSER_PACKAGE_FILE .
zip -r $COMPOSER_PACKAGE_FILE . $ZIP_EXTRA_ARGS
# prepare upload helper function
- |