Responding to PR feedback.

Modified the .gitignore also to exclude vim swap files.
This commit is contained in:
Zlatko Knezevic 2016-01-28 07:03:41 -08:00
parent ae78068481
commit 810e66b8fd
6 changed files with 17 additions and 7 deletions

View file

@ -48,7 +48,7 @@ execute(){
result=$?
elif [[ $UPLOAD_FILE == *.svg ]]; then
upload_version_badge $UPLOAD_FILE
result=0
result=$?
fi
exit $result
@ -198,6 +198,8 @@ upload_version_badge(){
echo "Uploading the version badge to $DOTNET_CLI_VERSION"
upload_file_to_blob_storage_azure_cli "dev/Binaries/$DOTNET_CLI_VERSION/$filename" $badgefile
return 0
}