From 34bfeaed0e79fcc79f00e3c796b7a1879a981694 Mon Sep 17 00:00:00 2001 From: Sacha Ligthert Date: Wed, 14 Aug 2024 17:01:52 +0200 Subject: [PATCH] Replace build script with a Taskfile --- build.sh | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100755 build.sh diff --git a/build.sh b/build.sh deleted file mode 100755 index 1f74707..0000000 --- a/build.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -mkdir -p builds - -rm builds/* - -go tool dist list | grep -v android | grep -v ios | grep -v wasip1 | awk -F '/' '{printf "echo Compiling %s/%s; env CGO_ENABLED=1 GOOS=%s GOARCH=%s go build -o builds/rowboz.%s-%s\n",$1,$2,$1,$2,$1,$2 }' | sh - -cd builds -for i in `ls *windows*`; do mv -v $i $i.exe; done \ No newline at end of file