Skip to content
This repository was archived by the owner on Nov 18, 2023. It is now read-only.

Commit 06ddf85

Browse files
committed
fix: Makefile
1 parent 2fdbd0a commit 06ddf85

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,16 +164,12 @@ quickstart: docker-build
164164
docker-get-files:
165165
$(eval RELEASE_DIR=dist/hp-linux-amd64-$(HP_VERSION)-oracle-$(ORA_VERSION))
166166
mkdir -p $(RELEASE_DIR)
167-
$(eval id=$(shell docker create relloyd/halfpipe-oracle-$(ORA_VERSION)):$(HP_VERSION)))
167+
$(eval id=$(shell docker create relloyd/halfpipe-oracle-$(ORA_VERSION):$(HP_VERSION)))
168168
docker cp $(id):/usr/local/bin/hp $(RELEASE_DIR)
169169
docker cp $(id):/usr/local/lib/hp-odbc-plugin.so $(RELEASE_DIR)
170170
docker cp $(id):/usr/local/lib/hp-oracle-plugin.so $(RELEASE_DIR)
171171
docker rm -v $(id)
172172

173-
.PHONY: release
174-
release: release-darwin release-linux
175-
@echo Release complete
176-
177173
.PHONY: release-darwin
178174
release-darwin:
179175
$(eval RELEASE_DIR=dist/hp-$(OSARCH)-$(GOARCH)-$(HP_VERSION)-oracle-$(ORA_VERSION))
@@ -185,3 +181,7 @@ release-darwin:
185181
.PHONY: release-linux
186182
release-linux: docker-build docker-get-files
187183
@echo Release linux complete
184+
185+
.PHONY: release
186+
release: release-darwin release-linux
187+
@echo Release complete

0 commit comments

Comments
 (0)