Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Sep 24, 2018
1 parent dc37013 commit 0003d01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion github-dev/upload-assets
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ main(){
echo "Uploading files: ${files[*]}"
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")
curl -XPOST -sSL -H "${AUTH_HEADER}" \
--data-binary @"$file" \
Expand Down

0 comments on commit 0003d01

Please sign in to comment.