Skip to content

Commit 94ffcfa

Browse files
committed
fix invalid bash syntax in yaml
1 parent 055ae35 commit 94ffcfa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/nuget-ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ jobs:
5656
packages=(src/artifacts/package/release/*.nupkg)
5757
symbols=(src/artifacts/package/release/*.snupkg)
5858
59-
if ((${`#packages`[@]} == 0)); then
59+
if ((${#packages[@]} == 0)); then
6060
echo "No NuGet packages were produced." >&2
6161
exit 1
6262
fi
63-
if ((${`#symbols`[@]} == 0)); then
63+
if ((${#symbols[@]} == 0)); then
6464
echo "No symbol packages were produced." >&2
6565
exit 1
6666
fi

0 commit comments

Comments
 (0)