Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-09-24 19:53:37 -04:00
parent dc37013c80
commit 0003d0146c
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -57,7 +57,8 @@ main(){
echo "Uploading files: ${files[*]}" echo "Uploading files: ${files[*]}"
echo "For tag name: ${tag_name} tag id: ${tag_id}" echo "For tag name: ${tag_name} tag id: ${tag_id}"
for file in "${files[@]}"; do # shellcheck disable=SC2068
for file in ${files[@]}; do
filename=$(basename "$file") filename=$(basename "$file")
curl -XPOST -sSL -H "${AUTH_HEADER}" \ curl -XPOST -sSL -H "${AUTH_HEADER}" \
--data-binary @"$file" \ --data-binary @"$file" \