From f2116f39ef5422909d2f426f57dadd5cdc4551ca Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Sat, 18 Jan 2025 11:36:56 +0100 Subject: [PATCH] fix name typo --- .github/workflows/release.yaml | 2 +- mkrel.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ab0e8c5..c968586 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -18,7 +18,7 @@ jobs: go-version: 1.22.11 - name: Build the executables - run: ./mkrel.sh tablizer ${{ github.ref_name}} + run: ./mkrel.sh gowipe ${{ github.ref_name}} - name: List the executables run: ls -l ./releases diff --git a/mkrel.sh b/mkrel.sh index 894deaf..3c77e53 100755 --- a/mkrel.sh +++ b/mkrel.sh @@ -46,7 +46,7 @@ for D in $DIST; do GOOS=${os} GOARCH=${arch} go build -o ${binfile} -ldflags "-X 'github.com/tlinden/tablizer/cfg.VERSION=${version}'" mkdir -p ${tardir} cp ${binfile} README.md LICENSE ${tardir}/ - echo 'tool = tablizer + echo 'tool = gowipe PREFIX = /usr/local UID = root GID = 0