Skip to content

Commit dbc566f

Browse files
committed
typo, teehee
1 parent 9dd9114 commit dbc566f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
dockerhook
1+
dockerhook
2+
release

dockerhook.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func init() {
3535

3636
func assert(err error) {
3737
if err != nil {
38-
log.Fatal("fatal:", err)
38+
log.Fatal("fatal: ", err)
3939
}
4040
}
4141

@@ -118,7 +118,7 @@ func main() {
118118
}
119119

120120
if os.Getenv("DOCKER_HOST") == "" {
121-
assert(os.Setenv("DOCKET_HOST", "unix:///var/run/docker.sock"))
121+
assert(os.Setenv("DOCKER_HOST", "unix:///var/run/docker.sock"))
122122
}
123123
docker, err := dockerapi.NewClientFromEnv()
124124
assert(err)

0 commit comments

Comments
 (0)