Fix wildcard expansion for bash in --publish-nuget

Apparently this worked under zsh but not under bash.
This commit is contained in:
Rémi Verschelde
2022-09-14 15:54:40 +02:00
parent 4e9ee976b2
commit 872c9bfe0e

View File

@@ -99,7 +99,9 @@ publish_nuget_packages() {
if [ $can_publish_nuget == 0 ]; then
return
fi
dotnet nuget push $1 --source "${NUGET_SOURCE}" --api-key "${NUGET_API_KEY}" --skip-duplicate
for pkg in "$@"; do
dotnet nuget push $pkg --source "${NUGET_SOURCE}" --api-key "${NUGET_API_KEY}" --skip-duplicate
done
}
godot_version=""