From a2b9383f6e35cb0fcd44a911cd39aefdbdfe61bb Mon Sep 17 00:00:00 2001 From: SimonLaux Date: Tue, 13 Aug 2024 15:20:30 +0200 Subject: [PATCH] fix readme commands --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5043e3292..ad3ca1390 100644 --- a/README.md +++ b/README.md @@ -146,13 +146,13 @@ $ cd deltachat-desktop $ npm i -g pnpm # Install dependencies -$ pnpm -w install +$ pnpm install # Build the app (only needed on the first time or if the code was changed) -$ pnpm -w build +$ pnpm -w build:electron # Start the application: -$ pnpm -w start +$ pnpm -w start:electron ``` > `-w` means workspace root package, with this you don't need to have your current working directory at the repo-root to run those scripts.