Skip to content

Instantly share code, notes, and snippets.

@cholick
Last active February 27, 2017 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cholick/f706cfbc40198db80887 to your computer and use it in GitHub Desktop.
Save cholick/f706cfbc40198db80887 to your computer and use it in GitHub Desktop.
Run go fomatter
#! /bin/bash -e
for d in $(ls -d */ | grep -vE "(vendor|Godeps)"); do
gofmt -w "$d"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment