Add script to update the file hash in oneliner

This commit is contained in:
Kristóf Tóth 2018-03-27 15:49:07 +02:00
parent d9a2632022
commit 366567bacf
1 changed files with 11 additions and 0 deletions

11
hack/update_oneline_install.sh Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
if [ "$(uname)" == "Darwin" ]; then
readlink_cmd="greadlink"
sed_cmd="gsed"
else
readlink_cmd="readlink"
sed_cmd="sed"
fi
SCRIPT_DIR="$(dirname $($readlink_cmd -f $0))"
$sed_cmd -i "s/SHA=\w\+/SHA=$(sha256sum hack/bootstrap_tfw_dev.sh | cut -d ' ' -f1)/g" "${SCRIPT_DIR}/oneline_install.sh"