Skip to content

Commit

Permalink
Use newer esy and support sha256 in shasum (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
Schniz authored Feb 25, 2019
1 parent aa67562 commit 117552e
Show file tree
Hide file tree
Showing 7 changed files with 2,742 additions and 585 deletions.
17 changes: 15 additions & 2 deletions .ci/shasum
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
#!/bin/bash
shift 2
sha1sum $@
shift
ALGO=$1
shift
case $ALGO in
1)
sha1sum $@
;;
256)
sha256sum $@
;;
*)
>&2 echo "Algorithm $ALGO not found"
exit 1
;;
esac
Loading

0 comments on commit 117552e

Please sign in to comment.