From 4e07e7c18efc617c7ecf2a17ed5e4e486f70cd05 Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Mon, 12 Sep 2022 20:12:36 +0900 Subject: [PATCH] Fix download.md (#272) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * `sed -i 's/-type cuda/-accelerator cuda/' docs/downloads/download.md` * `-accelerator` → `-Accelerator` Co-authored-by: qwerty2501 <939468+qwerty2501@users.noreply.github.com> * `type` → `-Accelerator` Co-authored-by: qwerty2501 <939468+qwerty2501@users.noreply.github.com> --- docs/downloads/download.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/downloads/download.md b/docs/downloads/download.md index c2f5a5a72..5eae451b0 100644 --- a/docs/downloads/download.md +++ b/docs/downloads/download.md @@ -26,7 +26,7 @@ curl -sSL https://github.com/VOICEVOX/voicevox_core/releases/latest/download/dow ```PowerShell Invoke-WebRequest https://github.com/VOICEVOX/voicevox_core/releases/latest/download/download.ps1 -OutFile ./download.ps1 -./download.ps1 -type directml +./download.ps1 -Accelerator directml ``` @@ -37,13 +37,13 @@ Invoke-WebRequest https://github.com/VOICEVOX/voicevox_core/releases/latest/down ```PowerShell Invoke-WebRequest https://github.com/VOICEVOX/voicevox_core/releases/latest/download/download.ps1 -OutFile ./download.ps1 -./download.ps1 -type cuda +./download.ps1 -Accelerator cuda ``` ### Linux の場合 ```bash -curl -sSL https://github.com/VOICEVOX/voicevox_core/releases/latest/download/download.sh | bash -s -- --type cuda +curl -sSL https://github.com/VOICEVOX/voicevox_core/releases/latest/download/download.sh | bash -s -- --accelerator cuda ```