mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-12 22:47:18 +00:00
Add script to update the file hash in oneliner
This commit is contained in:
parent
d9a2632022
commit
366567bacf
11
hack/update_oneline_install.sh
Executable file
11
hack/update_oneline_install.sh
Executable 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"
|
Loading…
Reference in New Issue
Block a user