Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.

Commit 5429a41

Browse files
committed
Use -f, --ignore-case for sort in CI
1 parent d91d996 commit 5429a41

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
- run: yarn deploy
1818
- run: ls -l build/* build.zip
1919
- run: sha256sum build.zip | tee SHA256SUMS.txt
20-
- run: find build -type f -exec ls {} \; | sort | xargs sha256sum | tee -a SHA256SUMS.txt
21-
- run: find build -type f -exec ls {} \; | sort | xargs cat | sha256sum | tee -a SHA256SUMS.txt
20+
- run: find build -type f -exec ls {} \; | sort -f | xargs sha256sum | tee -a SHA256SUMS.txt
21+
- run: find build -type f -exec ls {} \; | sort -f | xargs cat | sha256sum | tee -a SHA256SUMS.txt
2222
- run: mkdir dist && mv build.zip SHA256SUMS.txt dist
2323
- store_artifacts:
2424
path: dist

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ script:
1010
- yarn deploy
1111
- ls -l build/* build.zip
1212
- sha256sum build.zip | tee SHA256SUMS.txt
13-
- find build -type f -exec ls {} \; | sort | xargs sha256sum | tee -a SHA256SUMS.txt
14-
- find build -type f -exec ls {} \; | sort | xargs cat | sha256sum | tee -a SHA256SUMS.txt
13+
- find build -type f -exec ls {} \; | sort -f | xargs sha256sum | tee -a SHA256SUMS.txt
14+
- find build -type f -exec ls {} \; | sort -f | xargs cat | sha256sum | tee -a SHA256SUMS.txt
1515
deploy:
1616
provider: releases
1717
api_key: $GITHUB_OAUTH_TOKEN

0 commit comments

Comments
 (0)