Skip to content

Commit 8383152

Browse files
committed
scripts/release: fix SHA256SUMS command
Signed-off-by: Gyuho Lee <[email protected]>
1 parent c327120 commit 8383152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ main() {
147147
# Generate SHA256SUMS
148148
echo -e "Generating sha256sums of release artifacts.\n"
149149
pushd ./release
150-
grep . -E '\.tar.gz$|\.zip$' | xargs shasum -a 256 > ./SHA256SUMS
150+
ls . | grep -E '\.tar.gz$|\.zip$' | xargs shasum -a 256 > ./SHA256SUMS
151151
popd
152152
if [ -s ./release/SHA256SUMS ]; then
153153
cat ./release/SHA256SUMS

0 commit comments

Comments
 (0)