From 467a6122753da66840fc5fa1ca2f10388c8de57d Mon Sep 17 00:00:00 2001 From: risemeup1 <515586620@qq.com> Date: Mon, 19 Aug 2024 06:25:09 +0000 Subject: [PATCH] fix --- .github/workflows/scripts/download_protobuf.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/scripts/download_protobuf.sh b/.github/workflows/scripts/download_protobuf.sh index 675d95f20..18773c9d2 100644 --- a/.github/workflows/scripts/download_protobuf.sh +++ b/.github/workflows/scripts/download_protobuf.sh @@ -31,7 +31,7 @@ else fi wget $protobuf_url -protobuf_svae_dir="$PWD/installed_protobuf" -mkdir -p $protobuf_svae_dir -tar -zxf $protobuf_tgz_name -C $protobuf_svae_dir -export PATH=$protobuf_svae_dir/bin:${PATH} +protobuf_save_dir="$PWD/installed_protobuf" +mkdir -p $protobuf_save_dir +tar -zxf $protobuf_tgz_name -C $protobuf_save_dir +export PATH=$protobuf_save_dir/bin:${PATH}