Files
go-toolbox/scripts/workers/gofumpt.sh
T
pztrn c1922c2087
Build container / BuildImage (push) Successful in 3m21s
Update things.
2026-05-27 01:39:32 +05:00

13 lines
216 B
Bash
Executable File

#!/bin/bash
gofumpt_version="0.10.0"
set -xe
cd /tmp
git clone https://github.com/mvdan/gofumpt.git
cd gofumpt || exit 1
git checkout "v${gofumpt_version}"
go build -o /usr/local/bin/gofumpt .
rm -rf /tmp/gofumpt