go-toolbox/scripts/workers/gofumpt.sh

13 lines
215 B
Bash
Raw Normal View History

2024-05-04 13:18:37 +05:00
#!/bin/bash
gofumpt_version="0.6.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