mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 08:25:03 +00:00
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>
4 lines
88 B
Bash
Executable File
4 lines
88 B
Bash
Executable File
#!/bin/sh
|
|
cd ./watchdog
|
|
for f in fwatchdog*; do shasum -a 256 $f > $f.sha256; done
|
|
cd .. |