diff options
| author | Christine Dodrill <me@christine.website> | 2019-06-26 21:28:11 +0000 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2019-06-26 21:28:11 +0000 |
| commit | 2a73e72c2f4bec8eb53120e8881655b56966b85f (patch) | |
| tree | 65d925142bc4a51a2039b5fb29e4e6fb8acd340b /internal | |
| parent | 153914d24f62312cdef8e52a5cf47866fa27b793 (diff) | |
| download | x-2a73e72c2f4bec8eb53120e8881655b56966b85f.tar.xz x-2a73e72c2f4bec8eb53120e8881655b56966b85f.zip | |
internal/yeet: fix DockerBuild, oopsv1.1.3
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/yeet/yeet.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/yeet/yeet.go b/internal/yeet/yeet.go index e769cf6..25ded2f 100644 --- a/internal/yeet/yeet.go +++ b/internal/yeet/yeet.go @@ -93,5 +93,6 @@ func DockerTag(ctx context.Context, org, repo, image string) string { // DockerBuild builds a docker image with the given working directory and tag. func DockerBuild(ctx context.Context, dir, tag string, args ...string) { args = append([]string{"build", "-t", tag}, args...) + args = append(args, ".") ShouldWork(ctx, nil, dir, "docker", args...) } |
