Skip to content

Commit 872c9bf

Browse files
committed
Fix wildcard expansion for bash in --publish-nuget
Apparently this worked under zsh but not under bash.
1 parent 4e9ee97 commit 872c9bf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build-release.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ publish_nuget_packages() {
9999
if [ $can_publish_nuget == 0 ]; then
100100
return
101101
fi
102-
dotnet nuget push $1 --source "${NUGET_SOURCE}" --api-key "${NUGET_API_KEY}" --skip-duplicate
102+
for pkg in "$@"; do
103+
dotnet nuget push $pkg --source "${NUGET_SOURCE}" --api-key "${NUGET_API_KEY}" --skip-duplicate
104+
done
103105
}
104106

105107
godot_version=""

0 commit comments

Comments
 (0)