Skip to content

Commit 3346d15

Browse files
author
Matthew Fisher
committed
fix(builder): cleanup binaries after make build
1 parent f49ea63 commit 3346d15

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

builder/Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,15 @@ build: check-docker
1515
docker cp $(CID):/go/bin/get-app-values bin/
1616
docker cp $(CID):/go/bin/publish-release-controller bin/
1717
docker cp $(CID):/go/bin/yaml2json-procfile bin/
18-
docker build -t $(IMAGE) .
18+
docker build -t $(IMAGE) .
1919
-docker kill $(CID)
20+
rm bin/extract-domain
21+
rm bin/extract-types
22+
rm bin/extract-version
23+
rm bin/get-app-config
24+
rm bin/get-app-values
25+
rm bin/publish-release-controller
26+
rm bin/yaml2json-procfile
2027

2128
clean: check-docker check-registry
2229
rm -f deisctl

0 commit comments

Comments
 (0)