Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion misc/building/rnote-windows-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pacman -S --noconfirm \
Add the Rust binary directory to the MSYS2 `PATH` by adding the following line to `~/.bashrc`.

```bash
export PATH=$PATH:/c/Users/<user>/.cargo/bin
export PATH="$PATH:/c/Users/<user>/.cargo/bin"
```

If you installed Inno Setup, append `:/c/Program Files (x86)/Inno Setup 6` to the path as well.
Expand All @@ -45,6 +45,7 @@ Finally, clone the repository somewhere and initialize the submodules.

```bash
git clone -c core.symlinks=true https://github.com/flxzt/rnote
cd rnote/
git submodule update --init --recursive
```

Expand Down