logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: 62f147f24247203e244e25e7452938fc1d6bb313
parent 736d7967fdf9713d657d18ed88c19b55f11195ce
Author: fosslinux <fosslinux@aussies.space>
Date:   Mon,  3 Feb 2025 17:23:53 +1100

Add error message when distfile doesn't exist

Diffstat:

Msteps/helpers.sh1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/steps/helpers.sh b/steps/helpers.sh @@ -303,6 +303,7 @@ check_source_line() { # Default to basename of url if not given fname="${fname:-$(basename "${url}")}" if ! [ -e "${fname}" ]; then + echo "${fname} does not exist!" false fi echo "${checksum} ${fname}" > "${fname}.sum"