reformat code with goimports

This commit is contained in:
Bas van Kervel 2015-04-09 10:26:26 +02:00
parent 5304f43067
commit 6da5b2fc5f
3 changed files with 92 additions and 92 deletions

View File

@ -1,12 +1,14 @@
package utils package utils
import ( import (
"path/filepath"
"os"
"strings"
"os/user"
"github.com/codegangsta/cli"
"flag" "flag"
"fmt" "fmt"
"os"
"os/user"
"path/filepath"
"strings"
"github.com/codegangsta/cli"
) )
// Custom type which is registered in the flags library which cli uses for // Custom type which is registered in the flags library which cli uses for
@ -55,6 +57,7 @@ func eachName(longName string, fn func(string)) {
fn(name) fn(name)
} }
} }
// called by cli library, grabs variable from environment (if in env) // called by cli library, grabs variable from environment (if in env)
// and adds variable to flag set for parsing. // and adds variable to flag set for parsing.
func (self DirectoryFlag) Apply(set *flag.FlagSet) { func (self DirectoryFlag) Apply(set *flag.FlagSet) {
@ -128,6 +131,3 @@ func expandPath(p string) string {
return filepath.Clean(os.ExpandEnv(p)) return filepath.Clean(os.ExpandEnv(p))
} }

View File

@ -1,9 +1,9 @@
package utils package utils
import ( import (
"testing"
"os" "os"
"os/user" "os/user"
"testing"
) )
func TestPathExpansion(t *testing.T) { func TestPathExpansion(t *testing.T) {