Create SHASUMS

Closes: #111

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
This commit is contained in:
Alex Ellis (OpenFaaS Ltd)
2020-09-22 09:21:25 +01:00
parent 3ce724512b
commit 6c48911412
2 changed files with 9 additions and 0 deletions

3
hack/hashgen.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
for f in bin/faasd*; do shasum -a 256 $f > $f.sha256; done