Skip to content

Commit

Permalink
Merge pull request openshift#122 from smarterclayton/fix_unix
Browse files Browse the repository at this point in the history
Make the comment in docker history slightly more readable
  • Loading branch information
openshift-merge-robot authored Feb 19, 2019
2 parents 3682349 + 3eab1eb commit 47b2e6c
Show file tree
Hide file tree
Showing 273 changed files with 90,206 additions and 14,056 deletions.
5 changes: 3 additions & 2 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dockerclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,13 +317,13 @@ func (e *ClientExecutor) Prepare(b *imagebuilder.Builder, node *parser.Node, fro
opts.Config.Entrypoint = nil
} else {
// TODO; replace me with a better default command
opts.Config.Cmd = []string{"sleep 86400"}
opts.Config.Cmd = []string{fmt.Sprintf("%s\nsleep 86400", "#(imagebuilder)")}
opts.Config.Entrypoint = append([]string{}, defaultShell...)
}
}

if len(opts.Config.Cmd) == 0 {
opts.Config.Entrypoint = append(append([]string{}, defaultShell...), "# NOP")
opts.Config.Entrypoint = append(append([]string{}, defaultShell...), "#(imagebuilder)")
}

// copy any source content into the temporary mount path
Expand Down
124 changes: 124 additions & 0 deletions vendor/golang.org/x/sys/unix/affinity_linux.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions vendor/golang.org/x/sys/unix/aliases.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions vendor/golang.org/x/sys/unix/asm_aix_ppc64.s

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 33 additions & 3 deletions vendor/golang.org/x/sys/unix/asm_linux_386.s

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 29 additions & 1 deletion vendor/golang.org/x/sys/unix/asm_linux_amd64.s

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 31 additions & 4 deletions vendor/golang.org/x/sys/unix/asm_linux_arm.s

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 47b2e6c

Please sign in to comment.