소스 검색

Replace build script with a Taskfile

Sacha Ligthert 2 년 전
부모
커밋
34bfeaed0e
1개의 변경된 파일0개의 추가작업 그리고 10개의 파일을 삭제
  1. 0 10
      build.sh

+ 0 - 10
build.sh

@@ -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