From 6c6723de55171fef071fe79ab19d86531a3d5792 Mon Sep 17 00:00:00 2001 From: Elara Date: Fri, 26 Apr 2024 02:51:46 +0000 Subject: [PATCH] Fix file glob --- plugin.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.sh b/plugin.sh index 88741f5..9840f16 100755 --- a/plugin.sh +++ b/plugin.sh @@ -16,7 +16,7 @@ export TWINE_REPOSITORY_URL="$PLUGIN_REPOSITORY_URL" if [ -n "$PLUGIN_COMMENT" ]; then - twine upload dist/music_kraken* --non-interactive --comment "$PLUGIN_COMMENT" + twine upload dist/* --non-interactive --comment "$PLUGIN_COMMENT" else - twine upload dist/music_kraken* --non-interactive + twine upload dist/* --non-interactive fi