mirror of
https://github.com/godotengine/godot-build-scripts.git
synced 2025-12-31 05:48:35 +03:00
Fix wildcard expansion for bash in --publish-nuget
Apparently this worked under zsh but not under bash.
This commit is contained in:
@@ -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=""
|
||||
|
||||
Reference in New Issue
Block a user