1
0
mirror of https://github.com/luzifer/vim.git synced 2024-09-21 03:42:55 +00:00
vim/bin/gofmtimport
Knut Ahlers 467a2b8cc2
Prefer gofumpt before gofmt
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2020-08-08 20:12:11 +02:00

19 lines
418 B
Bash
Executable File

#!/bin/bash
set -euxo pipefail
[ ${DEBUG:-0} -eq 1 ] && exec 2>/tmp/gofmtimport.dbg
cmdimports=$(command -v gofumports || command -v goimports || true)
cmdfmt=$(command -v gofumpt || command -v gofmt || true)
[[ -n $cmdimports ]] && [[ -n $cmdfmt ]] || {
echo "No imports command or no fmt command found" >&2
exit 1
}
${cmdimports} \
-srcdir "$2" \
-local "${GOIMPORT_LOCAL:-}" \
-w "$2"
${cmdfmt} -s -w "$2"