Skip to content

Commit

Permalink
Fix: shellcheckに引っかかっていたのを直す
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Mar 30, 2024
1 parent c8086ab commit 67677c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 67677c7

Please sign in to comment.