Skip to content

Commit

Permalink
build: Fix wrong path usage in digest files generation step of Circle…
Browse files Browse the repository at this point in the history
…CI config file
  • Loading branch information
gfieni committed Jun 28, 2019
1 parent 1e91684 commit ff5f1ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ jobs:
- run:
name: generate md5, sha256 and blake2 digest files
command: |
(cd src && md5sum docker-machine-driver-g5k-* >MD5SUMS)
(cd src && sha256sum docker-machine-driver-g5k-* >SHA256SUMS)
(cd src && b2sum docker-machine-driver-g5k-* >BLAKE2SUMS)
(cd bin && md5sum docker-machine-driver-g5k-* >MD5SUMS)
(cd bin && sha256sum docker-machine-driver-g5k-* >SHA256SUMS)
(cd bin && b2sum docker-machine-driver-g5k-* >BLAKE2SUMS)
- run:
name: upload binaries and digest files to GitHub releases
Expand Down

0 comments on commit ff5f1ec

Please sign in to comment.