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>
4 lines
69 B
Bash
Executable File
4 lines
69 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in faas-cli*; do shasum -a 256 $f > $f.sha256; done
|