Skip to content

Commit 4418762

Browse files
author
Matthew Pirocchi
committed
Fix bash function invocation in fetch-dotnet-snk.sh.
1 parent 4c6dfcc commit 4418762

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fetch-dotnet-snk.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ apt install jq -y
2323

2424
if [ -z ${DOTNET_STRONG_NAME_ROLE_ARN:-} ]; then
2525
echo "Strong name signing is enabled, but DOTNET_STRONG_NAME_ROLE_ARN is not set."
26-
echo_usage()
26+
echo_usage
2727
exit 1
2828
fi
2929

3030
if [ -z ${DOTNET_STRONG_NAME_SECRET_REGION:-}]; then
3131
echo "Strong name signing is enabled, but DOTNET_STRONG_NAME_SECRET_REGION is not set."
32-
echo_usage()
32+
echo_usage
3333
exit 1
3434
fi
3535

3636
if [ -z ${DOTNET_STRONG_NAME_SECRET_ID:-} ]; then
3737
echo "Strong name signing is enabled, but DOTNET_STRONG_NAME_SECRET_ID is not set."
38-
echo_usage()
38+
echo_usage
3939
exit 1
4040
fi
4141

0 commit comments

Comments
 (0)