Skip to content

Commit bb2a615

Browse files
committed
Simplify Quick Start to single command for both apps
- Replace separate Logic Pro and MainStage commands - Single one-line command generates links for both apps - Cleaner, simpler user experience - Uses && instead of ; for better error handling
1 parent 12c95d1 commit bb2a615

1 file changed

Lines changed: 3 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,13 @@ This tool creates text files with direct download links for all Logic Pro and Ma
2424

2525
### 1. Run the Tool
2626

27-
Open Terminal and paste one of these commands:
27+
Open Terminal and paste this command:
2828

29-
**For Logic Pro**:
3029
```bash
31-
cd ~/Downloads; mkdir -p lpx_links/app ; cd lpx_links/app ; curl -#L https://github.com/davidteren/lpx_links/tarball/master | tar -xzv --strip-components 1 ; ./lpx_links.rb -n Logic
30+
cd ~/Downloads && mkdir -p lpx_links/app && cd lpx_links/app && curl -#L https://github.com/davidteren/lpx_links/tarball/master | tar -xzv --strip-components 1 && ./lpx_links.rb
3231
```
3332

34-
**For MainStage**:
35-
```bash
36-
cd ~/Downloads; mkdir -p lpx_links/app ; cd lpx_links/app ; curl -#L https://github.com/davidteren/lpx_links/tarball/master | tar -xzv --strip-components 1 ; ./lpx_links.rb -n Mainstage
37-
```
33+
This generates download links for both Logic Pro and MainStage content.
3834

3935
### 2. Find Your Links
4036

0 commit comments

Comments
 (0)