Skip to content

Commit

Permalink
fix: syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov committed Oct 2, 2024
1 parent 1a34ec7 commit 3f15b5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions set_do_upload_args.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ fi

if [ -n "$CODECOV_EXCLUDE_DIRS" ];
then
for directory in$CODECOV_EXCLUDE_DIRS; do
for directory in $CODECOV_EXCLUDE_DIRS; do
codecov_do_upload_args+=( " --exclude " "$directory" )
done
fi
Expand All @@ -58,14 +58,14 @@ fi

if [ -n "$CODECOV_FILES" ];
then
for file in$CODECOV_FILES; do
for file in $CODECOV_FILES; do
codecov_do_upload_args+=( " --file " "$file" )
done
fi

if [ -n "$CODECOV_FLAGS" ];
then
for flag in$CODECOV_FLAGS; do
for flag in $CODECOV_FLAGS; do
codecov_do_upload_args+=( " --flag " "$flag" )
done
fi
Expand Down Expand Up @@ -112,7 +112,7 @@ fi

if [ -n "$CODECOV_PLUGINS" ];
then
for plugin in$CODECOV_PLUGINS; do
for plugin in $CODECOV_PLUGINS; do
codecov_do_upload_args+=( " --plugin " "$plugin" )
done
fi
Expand Down

0 comments on commit 3f15b5d

Please sign in to comment.