From 89c9911be6197973bf9683f48fa5f1a593aa500e Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 2 Aug 2022 20:12:25 +0200 Subject: [PATCH] fix install script --- scripts/install-obsw-yocto.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-obsw-yocto.sh b/scripts/install-obsw-yocto.sh index 059d7244..40bc5beb 100755 --- a/scripts/install-obsw-yocto.sh +++ b/scripts/install-obsw-yocto.sh @@ -27,7 +27,7 @@ if [ ! -z ${EIVE_OBSW_ROOT} ]; then cd ${EIVE_OBSW_ROOT} obsw_root=$(pwd) elif [ -d ${build_dir} ]; then - obsw_root=${build_dir} + obsw_root=$(pwd) : elif [ -d ../${build_dir} ]; then cd ..