From 923b5a1a96ac7eb84dd5015b9533db6f4aded644 Mon Sep 17 00:00:00 2001 From: beerpsi Date: Wed, 27 Dec 2023 19:38:05 +0700 Subject: [PATCH] escape shell variables --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 33b86f0..e413383 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ CONTROLLER="tasoller_v1" # replace with your preferred controller backend # For CHUNITHM NEW (SDHD) cargo build --target i686-pc-windows-msvc --release --features chusan,$CONTROLLER cargo build --target x86_64-pc-windows-msvc --release --features chusan,$CONTROLLER -cp target/i686-pc-windows-msvc/release/chuniio_rs.dll chuniio_$CONTROLLER_chusan.dll -cp target/x86_64-pc-windows-msvc/release/chuniio_rs.dll chuniio_$CONTROLLER_amdaemon.dll +cp target/i686-pc-windows-msvc/release/chuniio_rs.dll chuniio_${CONTROLLER}_chusan.dll +cp target/x86_64-pc-windows-msvc/release/chuniio_rs.dll chuniio_${CONTROLLER}_amdaemon.dll # For CHUNITHM (SDBT) cargo build --target i686-pc-windows-msvc --release --features $CONTROLLER