mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-18 22:11:39 -04:00
9 lines
164 B
Bash
Executable File
9 lines
164 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for f in $@; do
|
|
[ -n "`dos2unix 2>/dev/null < $f | gofmt -s -d`" ] && echo $f
|
|
done
|
|
|
|
# always return success or else 'make' will abort
|
|
exit 0
|