From 498c393baaef982a8c79ac8f7f46d78ccb0e39d1 Mon Sep 17 00:00:00 2001 From: sawka Date: Mon, 6 Nov 2023 13:39:27 -0800 Subject: [PATCH] zip is a requirement for linux builds --- build-linux.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-linux.md b/build-linux.md index 7e552cc7..63c6b0ee 100644 --- a/build-linux.md +++ b/build-linux.md @@ -10,11 +10,14 @@ If you install the production version of Wave, you'll see a semi-transparent sid ## Prereqs and Tools -Download and install Go (must be at least go 1.18). We also need gcc installed to run a CGO build (for Golang): +Download and install Go (must be at least go 1.18). We also need gcc installed to run a CGO build (for Golang). +zip is required to build linux deployment packages (not required for running and debugging dev builds). + ``` sudo snap install go --classic sudo apt-get update sudo apt-get install gcc +sudo apt-get install zip ``` Download and install [ScriptHaus](https://github.com/scripthaus-dev/scripthaus) (to run the build commands):