reformat code with goimports

pull/671/head
Bas van Kervel 10 years ago
parent 5304f43067
commit 6da5b2fc5f
  1. 14
      cmd/utils/customflags.go
  2. 2
      cmd/utils/customflags_test.go

@ -1,12 +1,14 @@
package utils
import (
"path/filepath"
"flag"
"fmt"
"os"
"strings"
"os/user"
"path/filepath"
"strings"
"github.com/codegangsta/cli"
"flag"
"fmt"
)
// 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)
}
}
// called by cli library, grabs variable from environment (if in env)
// and adds variable to flag set for parsing.
func (self DirectoryFlag) Apply(set *flag.FlagSet) {
@ -128,6 +131,3 @@ func expandPath(p string) string {
return filepath.Clean(os.ExpandEnv(p))
}

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

Loading…
Cancel
Save