From 2522a393edf6ee9a92f69d6bb01041a0ff3bbc10 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 10 Aug 2025 12:39:02 +1200 Subject: [PATCH] Update publish.sh --- publish.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/publish.sh b/publish.sh index af00b73..90a33f5 100755 --- a/publish.sh +++ b/publish.sh @@ -24,15 +24,9 @@ mkdir -p "${SCRIPT_DIR}/output" export CMAKE_BUILD_TYPE="Release" export PROJECT="simple-object-server" -docker build \ - -t "${PROJECT}-build" \ - -f "${SCRIPT_DIR}/Dockerfile.dropshell-build" \ - --build-arg PROJECT="${PROJECT}" \ - --build-arg CMAKE_BUILD_TYPE="${CMAKE_BUILD_TYPE}" \ - --output "${SCRIPT_DIR}/output" \ - "${SCRIPT_DIR}" +"${SCRIPT_DIR}/build.sh" -[ -f ${SCRIPT_DIR}/output/simple-object-server ] || die "Build failed." +[ -f "${SCRIPT_DIR}/output/simple-object-server" ] || die "Build failed." # download the sos binary mkdir -p "${TEMP_DIR}"