Skip to content

Commit

Permalink
ci: remove -v from tar flags
Browse files Browse the repository at this point in the history
Too much output, too little value.
  • Loading branch information
chrboe committed Mar 6, 2023
1 parent df53d0b commit bb50c92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ base-image:
script:
- ln -snf $DOCKER_AUTH_CONFIG_FILE $HOME/.docker/config.json
- |
curl -sSfL -u gitlab-ci-token:$CI_JOB_TOKEN $CI_SERVER_URL/linbit/build-helpers/-/archive/$BUILD_HELPERS_VERSION/ignored.tar.gz | tar -xvzf -
curl -sSfL -u gitlab-ci-token:$CI_JOB_TOKEN $CI_SERVER_URL/linbit/build-helpers/-/archive/$BUILD_HELPERS_VERSION/ignored.tar.gz | tar -xzf -
mv build-helpers-* build-helpers
. build-helpers/gitlab-utils.sh
- |
Expand Down Expand Up @@ -142,7 +142,7 @@ test-e2e:
script:
- ln -snf $DOCKER_AUTH_CONFIG_FILE $HOME/.docker/config.json
- |
curl -sSfL -u gitlab-ci-token:$CI_JOB_TOKEN https://gitlab.at.linbit.com/linbit/build-helpers/-/archive/$BUILD_HELPERS_VERSION/ignored.tar.gz | tar -xvzf -
curl -sSfL -u gitlab-ci-token:$CI_JOB_TOKEN https://gitlab.at.linbit.com/linbit/build-helpers/-/archive/$BUILD_HELPERS_VERSION/ignored.tar.gz | tar -xzf -
mv build-helpers-* build-helpers
. build-helpers/gitlab-utils.sh
- |
Expand Down

0 comments on commit bb50c92

Please sign in to comment.