WIP: Ready container execution #2

Draft
ivooc wants to merge 19 commits from dev-ivo into main
Showing only changes of commit 716ed4adbe - Show all commits

View File

@ -52,8 +52,7 @@ get_build_url() {
check_exists_latest_lineageos_build() { check_exists_latest_lineageos_build() {
if [[ -f "/tmp/lineageos.zip" ]]; then if [[ -f "/tmp/lineageos.zip" ]]; then
# The --location lets curl follow the redirection. # The --location lets curl follow the redirection.
print_message "$(get_build_url)?sha256" curl --silent --location "$(get_build_url)?sha256" --output /tmp/lineageos.sha256
curl --location "$(get_build_url)?sha256" --output /tmp/lineageos.sha256
hash1=$( awk '{print $1}' /tmp/lineageos.sha256 ) hash1=$( awk '{print $1}' /tmp/lineageos.sha256 )
hash2=$( sha256sum /tmp/lineageos.zip | awk '{print $1}' ) hash2=$( sha256sum /tmp/lineageos.zip | awk '{print $1}' )
[[ -n $hash1 && -n $hash2 && $hash1 == $hash2 ]] [[ -n $hash1 && -n $hash2 && $hash1 == $hash2 ]]