From 6bbb1d2eedd9ab4914884a1f2d6d2becc864d48d Mon Sep 17 00:00:00 2001 From: gameofdimension Date: Fri, 31 May 2024 08:31:10 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=B7=AF=E5=BE=84=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: gameofdimension --- .../AddCustomSample/FrameworkLaunch/AddCustom/build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/operator/AddCustomSample/FrameworkLaunch/AddCustom/build.sh b/operator/AddCustomSample/FrameworkLaunch/AddCustom/build.sh index 4be96d7d8b..857de56d5d 100755 --- a/operator/AddCustomSample/FrameworkLaunch/AddCustom/build.sh +++ b/operator/AddCustomSample/FrameworkLaunch/AddCustom/build.sh @@ -17,16 +17,16 @@ fi target=package if [ "$1"x != ""x ]; then target=$1; fi -cmake --build . --target $target -j16 +cmake --build .. --target $target -j16 if [ $? -ne 0 ]; then exit 1; fi if [ $target = "package" ]; then - if test -d ./op_kernel/binary ; then + if test -d ../op_kernel/binary ; then ./cust*.run if [ $? -ne 0 ]; then exit 1; fi - cmake --build . --target binary -j16 + cmake --build .. --target binary -j16 if [ $? -ne 0 ]; then exit 1; fi - cmake --build . --target $target -j16 + cmake --build .. --target $target -j16 fi fi -- Gitee