Skip to content

Commit

Permalink
fix(ci): fixup awk off-by-one
Browse files Browse the repository at this point in the history
  • Loading branch information
TheKevJames committed Apr 26, 2024
1 parent ac0df67 commit 4ea87f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ workflows:
tag: "${CIRCLE_SHA1:0:10}"
post-steps:
- run: |
export COVERALLS_VERSION=$(awk -F'=' '/ARG COVERALLS_VERSION=/ {print substr($2, 2, length($2))}' Dockerfile)
export COVERALLS_VERSION=$(awk -F'=' '/ARG COVERALLS_VERSION=/ {print substr($2, 1, length($2))}' Dockerfile)
echo "${COVERALLS_VERSION}" >/tmp/custom-tag
- custom-tag
- docker-readme-build:
Expand Down

0 comments on commit 4ea87f3

Please sign in to comment.