Skip to content

Commit

Permalink
#208. Fix makefile example and .PHONY build-package changed to package
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-winberry committed Feb 9, 2022
1 parent 86bf65b commit c731686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ PACKAGE_PATH := $(shell cd $(name) && pwd)
.PHONY: default
default: help

.PHONY: build-package
.PHONY: package
package:
ifdef name
@cd $(name) && $(ZARF_BIN) package create --confirm
Expand All @@ -40,6 +40,6 @@ endif
help:
@echo "\nAvailable commands: "
@echo "\n package Builds a tar.zst given the name of the component you wish to create."
@echo " example: make build-package name=flux"
@echo " example: make package name=flux"
@echo "\n help shows this menu."
@echo

0 comments on commit c731686

Please sign in to comment.