mirror of
https://github.com/rancher/os.git
synced 2025-06-21 20:47:04 +00:00
13 lines
219 B
Bash
Executable File
13 lines
219 B
Bash
Executable File
#!/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
|