We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055ae35 commit 94ffcfaCopy full SHA for 94ffcfa
1 file changed
.github/workflows/nuget-ci-cd.yml
@@ -56,11 +56,11 @@ jobs:
56
packages=(src/artifacts/package/release/*.nupkg)
57
symbols=(src/artifacts/package/release/*.snupkg)
58
59
- if ((${`#packages`[@]} == 0)); then
+ if ((${#packages[@]} == 0)); then
60
echo "No NuGet packages were produced." >&2
61
exit 1
62
fi
63
- if ((${`#symbols`[@]} == 0)); then
+ if ((${#symbols[@]} == 0)); then
64
echo "No symbol packages were produced." >&2
65
66
0 commit comments