From 67677c71cc8feb156312d0ad37831bf392d934d0 Mon Sep 17 00:00:00 2001 From: sevenc-nanashi Date: Sat, 30 Mar 2024 20:48:31 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20shellcheck=E3=81=AB=E5=BC=95=E3=81=A3?= =?UTF-8?q?=E3=81=8B=E3=81=8B=E3=81=A3=E3=81=A6=E3=81=84=E3=81=9F=E3=81=AE?= =?UTF-8?q?=E3=82=92=E7=9B=B4=E3=81=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_and_deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index 6faf86c35..c4f8871b9 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -473,10 +473,10 @@ jobs: function copy_dll() { artifact_name=$1 target=$2 - root=$(echo $1 | grep -q android && echo jniLibs || echo dll) + root=$(echo "$1" | grep -q android && echo jniLibs || echo dll) dest="lib/src/main/resources/$root/$target" - mkdir -p $dest - cp -v "../../artifacts/voicevox_core_java_api-$artifact_name"/*.{dll,so,dylib} $dest + mkdir -p "$dest" + cp -v "../../artifacts/voicevox_core_java_api-$artifact_name"/*.{dll,so,dylib} "$dest" echo "$artifact_name => $dest" } function clean_dlls() {