Skip to content

Commit

Permalink
Use -f, --ignore-case for sort in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xcv58 committed Oct 16, 2017
1 parent d91d996 commit 5429a41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -17,8 +17,8 @@ jobs:
- run: yarn deploy
- run: ls -l build/* build.zip
- run: sha256sum build.zip | tee SHA256SUMS.txt
- run: find build -type f -exec ls {} \; | sort | xargs sha256sum | tee -a SHA256SUMS.txt
- run: find build -type f -exec ls {} \; | sort | xargs cat | sha256sum | tee -a SHA256SUMS.txt
- run: find build -type f -exec ls {} \; | sort -f | xargs sha256sum | tee -a SHA256SUMS.txt
- run: find build -type f -exec ls {} \; | sort -f | xargs cat | sha256sum | tee -a SHA256SUMS.txt
- run: mkdir dist && mv build.zip SHA256SUMS.txt dist
- store_artifacts:
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -10,8 +10,8 @@ script:
- yarn deploy
- ls -l build/* build.zip
- sha256sum build.zip | tee SHA256SUMS.txt
- find build -type f -exec ls {} \; | sort | xargs sha256sum | tee -a SHA256SUMS.txt
- find build -type f -exec ls {} \; | sort | xargs cat | sha256sum | tee -a SHA256SUMS.txt
- find build -type f -exec ls {} \; | sort -f | xargs sha256sum | tee -a SHA256SUMS.txt
- find build -type f -exec ls {} \; | sort -f | xargs cat | sha256sum | tee -a SHA256SUMS.txt
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
Expand Down

0 comments on commit 5429a41

Please sign in to comment.