From 5043cb7778e253ed6017ac4d07987e74d26778ac Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 6 Dec 2022 19:19:50 +0000 Subject: [PATCH] scripts: Log BUILDROOT when it cannot be found Signed-off-by: Michael Tremer --- src/scripts/find-provides | 2 +- src/scripts/find-requires | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5