Skip to content

Commit

Permalink
Update README with examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kobaltcore committed Apr 16, 2024
1 parent ae572d9 commit 0a0a14d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,16 @@ renutil launch 8.2.0 -d -- ~/my-project

We use the double dash (`--`) to separate the arguments for Ren'Py from `renutil`'s. This way, you can even pass things like `--help` through to the underlying program without `renutil` interfering.

### Launch a Ren'Py project with an interactive Terminal REPL
```bash
renutil launch 8.3.1 -di -- ~/my-project
```

### Launch a Ren'Py project with custom code to run after startup
```bash
renutil launch 8.3.1 -di --code 'print("Hello World!")' -- ~/my-project
```

### Install a specific version
```bash
renutil install 8.2.0
Expand Down

0 comments on commit 0a0a14d

Please sign in to comment.