From 3babd5aaf2f1086d5b9a13a53ba614d49280babb Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 1 May 2023 19:24:38 +0300 Subject: Add taskfile --- README.md | 2 +- Taskfile.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 Taskfile.yml diff --git a/README.md b/README.md index 941172f..001def2 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ To compile and install Gogios on OpenBSD, follow these steps: ``` git clone https://codeberg.org/snonux/gogios.git cd gogios -go build -o gogios cmd/gogios/main.go +go build -o gogios cmd/gogios/main.go # Or, alternatively: `task build` with taskfile.dev doas cp gogios /usr/local/bin/gogios doas chmod 755 /usr/local/bin/gogios ``` diff --git a/Taskfile.yml b/Taskfile.yml new file mode 100644 index 0000000..fb6b3bc --- /dev/null +++ b/Taskfile.yml @@ -0,0 +1,6 @@ +version: '3' + +tasks: + build: + cmds: + - go build -o gogios cmd/gogios/main.go -- cgit v1.2.3