From: Michael Tremer Date: Tue, 6 Dec 2022 19:19:50 +0000 (+0000) Subject: scripts: Log BUILDROOT when it cannot be found X-Git-Tag: 0.9.28~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5043cb7778e253ed6017ac4d07987e74d26778ac;p=pakfire.git scripts: Log BUILDROOT when it cannot be found Signed-off-by: Michael Tremer --- diff --git a/src/scripts/find-provides b/src/scripts/find-provides index d3379ae5e..3f2ec30db 100644 --- a/src/scripts/find-provides +++ b/src/scripts/find-provides @@ -74,7 +74,7 @@ main() { # Check if BUILDROOT exists if [ ! -d "${buildroot}" ]; then - error "BUILDROOT does not exist" + error "BUILDROOT (${buildroot}) does not exist" return 1 fi diff --git a/src/scripts/find-requires b/src/scripts/find-requires index 7db19da79..7ca431622 100644 --- a/src/scripts/find-requires +++ b/src/scripts/find-requires @@ -134,7 +134,7 @@ main() { # Check if BUILDROOT exists if [ ! -d "${buildroot}" ]; then - error "BUILDROOT does not exist" + error "BUILDROOT (${buildroot}) does not exist" return 1 fi