From a8e3211a2334fdf75d13d606b8c026eab568cea8 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Mon, 1 Apr 2024 09:25:23 -0400 Subject: [PATCH] show issue --- test/iso/flatpak_repo_updated.sh | 3 +++ test/iso/install_hash.sh | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/test/iso/flatpak_repo_updated.sh b/test/iso/flatpak_repo_updated.sh index e6ed1c9..ef4277d 100644 --- a/test/iso/flatpak_repo_updated.sh +++ b/test/iso/flatpak_repo_updated.sh @@ -9,6 +9,7 @@ result=0 if [ -z "${add_line_repo}" ] then echo "Repo name not updated on add_remote line" + echo ${add_line} result=1 else echo "Repo name found on add_remote line" @@ -17,6 +18,7 @@ fi if [ -z "${add_line_url}" ] then echo "Repo url not updated on add_remote line" + echo ${add_line} result=1 else echo "Repo url found on add_remote line" @@ -29,6 +31,7 @@ replace_line_repo=$(echo ${replace_line} | grep ${FLATPAK_REMOTE_NAME}) if [ -z "${replace_line_repo}" ] then echo "Repo name not updated on replace_installed_refs line" + echo ${replace_line} result=1 else echo "Repo name found on replace_installed_refs line" diff --git a/test/iso/install_hash.sh b/test/iso/install_hash.sh index 29b2b60..ad04549 100644 --- a/test/iso/install_hash.sh +++ b/test/iso/install_hash.sh @@ -3,11 +3,12 @@ #set -ex checkisomd5 ../../${ISO_NAME} -cd $(dirname ../../${ISO_NAME}) && sha256sum -c $(basename ${ISO_NAME})-CHECKSUM if [[ $? != 0 ]] then echo "Found:" checkisomd5 --md5sumonly ../../${ISO_NAME} echo "Expected:" implantisomd5 --force base-39.iso -fi \ No newline at end of file +fi + +cd $(dirname ../../${ISO_NAME}) && sha256sum -c $(basename ${ISO_NAME})-CHECKSUM \ No newline at end of file