Skip to content

Commit

Permalink
disable deb (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
gkirok authored Aug 15, 2019
1 parent 6542bac commit d2b34c4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ build:

.PHONY: download
download:
@rm -rf hack/libs/${DST_BINARY_NAME}*
@wget --quiet $(MIRROR)/$(RPM_PATH)/$(IGUAZIO_VERSION)/$(SRC_BINARY_NAME).rpm -O hack/libs/$(DST_BINARY_NAME).rpm
@wget --quiet $(MIRROR)/$(DEB_PATH)/$(IGUAZIO_VERSION)/$(SRC_BINARY_NAME).deb -O hack/libs/$(DST_BINARY_NAME).deb
@touch hack/libs/$(IGUAZIO_VERSION)
rm -rf hack/libs/${DST_BINARY_NAME}*
wget --quiet $(MIRROR)/$(RPM_PATH)/$(IGUAZIO_VERSION)/$(SRC_BINARY_NAME).rpm -O hack/libs/$(DST_BINARY_NAME).rpm
#wget --quiet $(MIRROR)/$(DEB_PATH)/$(IGUAZIO_VERSION)/$(SRC_BINARY_NAME).deb -O hack/libs/$(DST_BINARY_NAME).deb
touch hack/libs/$(IGUAZIO_VERSION)

.PHONY: copy
copy:
@rm -rf hack/libs/${DST_BINARY_NAME}*
@cp $(MIRROR)/$(SRC_BINARY_NAME).rpm hack/libs/$(DST_BINARY_NAME).rpm
@cp $(MIRROR)/$(SRC_BINARY_NAME).deb hack/libs/$(DST_BINARY_NAME).deb
@touch hack/libs/$(IGUAZIO_VERSION)
rm -rf hack/libs/${DST_BINARY_NAME}*
cp $(MIRROR)/$(SRC_BINARY_NAME).rpm hack/libs/$(DST_BINARY_NAME).rpm
#cp $(MIRROR)/$(SRC_BINARY_NAME).deb hack/libs/$(DST_BINARY_NAME).deb
touch hack/libs/$(IGUAZIO_VERSION)

.PHONY: release
release: check-req $(FETCH_METHOD) build
Expand Down

0 comments on commit d2b34c4

Please sign in to comment.