Skip to content

Commit

Permalink
Fix sha256sum path
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaklin committed Oct 31, 2024
1 parent dabc1ab commit 43e0335
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/deploy/build_aarch64-apple-darwin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cp LICENSE-APACHE $path/
cp LICENSE-MIT $path/
cd /io/tmp
tar -zcvf $target.tar.gz $target
sha256sum $target.tar.gz > $target".sha256sum"
sha256sum $target.tar.gz > $target".tar.gz.sha256sum"
mv $target.tar.gz /io/
mv $target".sha256sum" /io/
mv $target".tar.gz.sha256sum" /io/
cd /io/
4 changes: 2 additions & 2 deletions .github/deploy/build_x86_64-apple-darwin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ cp LICENSE-APACHE $path/
cp LICENSE-MIT $path/
cd /io/tmp
tar -zcvf $target.tar.gz $target
sha256sum $target.tar.gz > $target".sha256sum"
sha256sum $target.tar.gz > $target".tar.gz.sha256sum"
mv $target.tar.gz /io/
mv $target".sha256sum" /io/
mv $target".tar.gz.sha256sum" /io/
cd /io/

0 comments on commit 43e0335

Please sign in to comment.