mirror of
https://github.com/rancher/os.git
synced 2025-06-24 05:57:03 +00:00
13 lines
219 B
Bash
13 lines
219 B
Bash
|
#!/bin/bash
|
||
|
set -ex
|
||
|
|
||
|
cd $(dirname $0)/..
|
||
|
. scripts/build-common
|
||
|
|
||
|
cd ${DIST}/artifacts
|
||
|
rm -f iso-checksums.txt || :
|
||
|
|
||
|
for algo in 'sha256' 'md5'; do
|
||
|
echo "$algo: `${algo}sum rancheros.iso`" >> iso-checksums.txt;
|
||
|
done
|