From 7b8efa3022853c4d0183e6c7b2db41f4898d6cc8 Mon Sep 17 00:00:00 2001 From: Romein van Buren Date: Sat, 3 Jun 2023 09:54:51 +0200 Subject: [PATCH] It isn't necessary to install frontend dependencies manually, as Wails does it --- .github/workflows/ci.yml | 3 --- INSTALL.md | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2236d5..5626af4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,9 +43,6 @@ jobs: cache: npm cache-dependency-path: frontend/package-lock.json - - name: Install frontend dependencies - run: cd frontend && npm ci && cd .. - - name: Build Rolens run: wails build diff --git a/INSTALL.md b/INSTALL.md index ef84a6c..3168fb1 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -37,6 +37,6 @@ To obtain a copy of the source code, do either of the following: `cd` into the root directory of the source code and run either: * `wails build` to generate an executable for your platform. -* `wails build -nsis` to generate an [NSIS installer](https://nsis.sourceforge.io/Main_Page). This requires that you have NSIS installed on your machine. +* `wails build -nsis` to generate an [NSIS installer](https://nsis.sourceforge.io/Main_Page) for Windows. This requires that you have NSIS installed on your machine. The generated binary will live in `build/bin`. You may want to run the installer (Windows) or move the app to the Applications folder (Mac).