Merge pull request #1690 from jbbarth/code-formatting

go fmt
This commit is contained in:
Victor Vieux 2013-08-29 17:13:37 -07:00
Родитель 690c3839fd d80b50d4b4
Коммит 49d35cc0ae
4 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -30,7 +30,7 @@ import (
var (
GITCOMMIT string
VERSION string
VERSION string
)
func (cli *DockerCli) getMethod(name string) (reflect.Method, bool) {

Просмотреть файл

@ -152,7 +152,6 @@ func TestRunWorkdirExists(t *testing.T) {
}
func TestRunExit(t *testing.T) {
stdin, stdinPipe := io.Pipe()
stdout, stdoutPipe := io.Pipe()

Просмотреть файл

@ -16,7 +16,7 @@ import (
var (
GITCOMMIT string
VERSION string
VERSION string
)
func main() {

Просмотреть файл

@ -27,10 +27,9 @@ func setupWorkingDirectory(workdir string) {
if workdir == "" {
return
}
syscall.Chdir(workdir)
syscall.Chdir(workdir)
}
// Takes care of dropping privileges to the desired user
func changeUser(u string) {
if u == "" {