mirror of
https://github.com/rfvgyhn/min-ed-launcher.git
synced 2026-02-04 12:35:28 +00:00
9 lines
224 B
Bash
Executable File
9 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
file_name=shasum.txt
|
|
|
|
pushd $(dirname "$(readlink -f "$0")")/../artifacts > /dev/null
|
|
find . -type f ! -name $file_name -printf '%P\n' | xargs shasum -a 256 -b > $file_name
|
|
cat $file_name
|
|
popd > /dev/null |