Skip to content

Commit

Permalink
Fix bash function invocation in fetch-dotnet-snk.sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiroc committed Sep 6, 2018
1 parent 4c6dfcc commit 4418762
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fetch-dotnet-snk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ apt install jq -y

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

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

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

Expand Down

0 comments on commit 4418762

Please sign in to comment.