Skip to content

Commit

Permalink
archiver tool has been renamed to arc
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameer Naik committed Nov 12, 2018
1 parent bda226f commit a51a136
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kubeprod/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ dist: archiver release manifests
RELEASE_TARBALL=_dist/bkpr-$(VERSION)-$${GOOS}-$${GOARCH}.$${OUTPUT_FORMAT} ; \
echo "cp -a ../LICENSE ../README.md $${ARTIFACTS_DIR}/" ; \
cp -a ../LICENSE ../README.md $${ARTIFACTS_DIR}/ ; \
echo "archiver make $${RELEASE_TARBALL} $${ARTIFACTS_DIR}" ; \
archiver make $${RELEASE_TARBALL} $${ARTIFACTS_DIR} ; \
echo "arc archive $${RELEASE_TARBALL} $${ARTIFACTS_DIR}" ; \
arc archive $${RELEASE_TARBALL} $${ARTIFACTS_DIR} ; \
done

checksum:
Expand All @@ -76,11 +76,11 @@ fmt:
vet:
$(GO) vet $(GOPKGS)

HAS_ARCHIVER := $(shell command -v archiver;)
HAS_ARCHIVER := $(shell command -v arc;)

archiver:
ifndef HAS_ARCHIVER
$(GO) get github.com/mholt/archiver/cmd/archiver
$(GO) get github.com/mholt/archiver/cmd/arc
endif

clean:
Expand Down

0 comments on commit a51a136

Please sign in to comment.