Skip to content

Commit

Permalink
fix: dont try to interpolate
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasrockhu-codecov committed Oct 1, 2024
1 parent 8d0d58b commit 8b884e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ echo "./\"$codecov_filename\" ${CODECOV_CLI_ARGS} create-commit -t $CODECOV_TOKE
./$codecov_filename \
${CODECOV_CLI_ARGS} \
create-commit \
-t "$(eval echo \$$CODECOV_TOKEN)" \
-t "$(eval echo $CODECOV_TOKEN)" \
${CODECOV_COMMIT_ARGS}

#create report
Expand All @@ -43,7 +43,7 @@ echo "./\"$codecov_filename\" ${CODECOV_CLI_ARGS} create-report -t <redacted>"
./$codecov_filename \
${CODECOV_CLI_ARGS} \
create-report \
-t "$(eval echo \$$CODECOV_TOKEN)" \
-t "$(eval echo $CODECOV_TOKEN)" \
${CODECOV_REPORT_ARGS}

#upload reports
Expand All @@ -55,7 +55,7 @@ echo "./${codecov_filename} ${CODECOV_CLI_ARGS} do-upload -Z -t <redacted> -n \"
${CODECOV_CLI_ARGS} \
do-upload \
-Z \
-t "$(eval echo \$$CODECOV_TOKEN)" \
-t "$(eval echo $CODECOV_TOKEN)" \
-n "${CODECOV_UPLOAD_NAME}" \
${FLAGS} \
${CODECOV_UPLOAD_ARGS} \
Expand Down

0 comments on commit 8b884e8

Please sign in to comment.