From 85ca2e4ef757b60ee65c0ecfa49ed4eed28c4ab2 Mon Sep 17 00:00:00 2001 From: Codersheepchen Date: Thu, 5 Jun 2025 11:59:29 +0800 Subject: [PATCH] fix compile bug --- compile_serving.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile_serving.sh b/compile_serving.sh index 801326a08..9b6ec210c 100644 --- a/compile_serving.sh +++ b/compile_serving.sh @@ -6,7 +6,7 @@ TENSORFLOW_DIR=$(pwd)/tensorflow DIST_DIR=$TF_SERVING_COMPILE_ROOT/download PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin -PATH=$BAZEL_PATH:$PATH +export PATH=$BAZEL_PATH:$PATH DIST_DIR="${DISTDIR:-$DIST_DIR}" BAZEL_COMPILE_CACHE=$TF_SERVING_COMPILE_ROOT/output -- Gitee