From 0c9ff42c1785aef90add31fbe09fe23f60b833fe Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Wed, 22 Mar 2023 10:01:17 +0100 Subject: [PATCH] use ln -sf to avoid a potentially confusing error message --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index bd96a45..b5ebe90 100755 --- a/build.sh +++ b/build.sh @@ -81,7 +81,7 @@ pushd "${IMGBUILDER_DIR}" make image PROFILE=${TARGET_DEVICE} PACKAGES="${PREINSTALLED_PACKAGES}" FILES=${IMGTEMPDIR} pushd "bin/targets/${TARGET_ARCHITECTURE}/" -ln -s ../../../packages . +ln -sf ../../../packages . popd popd