Skip to content

Commit 9162003

Browse files
Fix example command.
1 parent cf0902f commit 9162003

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ This generator clones JUCE from [https://github.com/juce-framework/JUCE](https:/
4646
```bash
4747
deno run --allow-read --allow-write --allow-run --allow-net --allow-env \
4848
https://raw.githubusercontent.com/cocotone/deno-juce-project-generator/main/generator/generate.ts \
49-
--name "MySynth" \
49+
--name "MyAudioPlugin" \
5050
--author "Your Name" \
51-
--output ./my-synth \
51+
--output ./my-audio-plugin \
5252
--with-git
5353
```
5454

@@ -57,13 +57,13 @@ Or with short flags:
5757
```bash
5858
deno run -A \
5959
https://raw.githubusercontent.com/cocotone/deno-juce-project-generator/main/generator/generate.ts \
60-
-n "MySynth" -a "Your Name" -o ./my-synth --with-git
60+
-n "MyAudioPlugin" -a "Your Name" -o ./my-audio-plugin --with-git
6161
```
6262

6363
### Build and Run
6464

6565
```bash
66-
cd my-synth
66+
cd my-audio-plugin
6767
deno task build # Build in Release mode
6868
deno task run # Run the Standalone app
6969
```
@@ -196,16 +196,16 @@ JUCEを使ったオーディオプラグイン開発には、従来いくつか
196196
```bash
197197
deno run --allow-read --allow-write --allow-run --allow-net --allow-env \
198198
https://raw.githubusercontent.com/cocotone/deno-juce-project-generator/main/generator/generate.ts \
199-
--name "MySynth" \
199+
--name "MyAudioPlugin" \
200200
--author "Your Name" \
201-
--output ./my-synth \
201+
--output ./my-audio-plugin \
202202
--with-git
203203
```
204204

205205
### ビルドと実行
206206

207207
```bash
208-
cd my-synth
208+
cd my-audio-plugin
209209
deno task build # Releaseモードでビルド
210210
deno task run # Standaloneアプリを実行
211211
```

docs/en/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h3>Step 2: Generate a Plugin Project</h3>
106106
</div>
107107

108108
<h3>Step 3: Build & Run</h3>
109-
<pre><code class="language-bash">cd my-synth
109+
<pre><code class="language-bash">cd my-audio-plugin
110110
deno task build # Build the plugin
111111
deno task run # Run the Standalone app</code></pre>
112112
</section>

docs/ja/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h3>Step 2: プラグインプロジェクトを生成</h3>
106106
</div>
107107

108108
<h3>Step 3: ビルド & 実行</h3>
109-
<pre><code class="language-bash">cd my-synth
109+
<pre><code class="language-bash">cd my-audio-plugin
110110
deno task build # プラグインをビルド
111111
deno task run # Standaloneアプリを実行</code></pre>
112112
</section>

0 commit comments

Comments
 (0)