faas/ci/hashgen.sh
Richard Gee 78a4584019 Add sha256 hashgen for watchdog to ci config
Issue #955 suggested that the watchdog binaries should have associated sha256 files to help assure the veracity of the built artefacts.  This change mirrors the method employed on
faas-cli to generate and deploy the sha256 hash for each flavour of the current watchdog.

Signed-off-by: Richard Gee <richard@technologee.co.uk>
2018-11-14 22:02:21 +00:00

4 lines
88 B
Bash
Executable File

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