10 lines
230 B
Bash
10 lines
230 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
IMPORT_RESULT=$(goimports -e -local "gitlab.com/gitlab-org/gitlab-workhorse" -l "$@")
|
||
|
|
||
|
if [ -n "${IMPORT_RESULT}" ]; then
|
||
|
echo >&2 "Formatting or imports need fixing: 'make fmt'"
|
||
|
echo "${IMPORT_RESULT}"
|
||
|
exit 1
|
||
|
fi
|