Files
faas-cli/ci/hashgen.sh
Alex Ellis (OpenFaaS Ltd) a1b8919099 Update hashgen not to inject bin in the path
Having bin/ as a prefix meant the SHASUM command was failing
to find the correct binary path in the curl script and
throwing an error.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
2020-11-18 15:32:35 +00:00

4 lines
69 B
Bash
Executable File

#!/bin/sh
for f in faas-cli*; do shasum -a 256 $f > $f.sha256; done