Commit b984b3acb3f03837cce20fc14878074aec043c32
1 parent
52b4f434
Exists in
master
and in
9 other branches
Show the md5/sha256 calculated in the .json file
Showing
1 changed file
with
2 additions
and
5 deletions
Show diff stats
Makefile
... | ... | @@ -27,10 +27,7 @@ move_to_platform_dir: |
27 | 27 | mkdir pkg |
28 | 28 | mv ${PLATFORM_DIR} pkg/ |
29 | 29 | |
30 | -sync: remove_json move_to_secret_dir md5 s3_sync | |
31 | - | |
32 | -remove_json: | |
33 | - find pkg/ -name '*.json' -delete | |
30 | +sync: move_to_secret_dir md5 s3_sync | |
34 | 31 | |
35 | 32 | move_to_secret_dir: |
36 | 33 | if support/is_gitlab_ee.sh || support/is_gitlab_com.sh ; then \ |
... | ... | @@ -40,7 +37,7 @@ move_to_secret_dir: |
40 | 37 | ; fi |
41 | 38 | |
42 | 39 | md5: |
43 | - find pkg -type f -exec md5sum {} \; -exec sha256sum {} \; | |
40 | + find pkg -name '*.json' -exec cat {} \; | |
44 | 41 | |
45 | 42 | s3_sync: |
46 | 43 | aws s3 sync pkg/ s3://${RELEASE_BUCKET} --acl public-read --region ${RELEASE_BUCKET_REGION} | ... | ... |