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