Update cookbook and repo.mk comments

This commit is contained in:
Jeremy Soller 2025-11-20 12:37:22 -07:00
parent 40f877bb4c
commit 06ff8a15f1
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA
2 changed files with 7 additions and 7 deletions

@ -1 +1 @@
Subproject commit fe435b6cf07e9a9320f3d63d7db705a9481911d1
Subproject commit 9958be688ce419c917445fa2fc85668d61610431

View File

@ -110,7 +110,7 @@ else
cd ./cookbook && ./target/release/repo unfetch $(foreach f,$(subst $(comma), ,$*),$(f))
endif
# Invoke clean.sh, and repo.sh for one of more targets separated by comma
# Invoke clean, and repo.sh for one of more targets separated by comma
cr.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) make $@
@ -119,7 +119,7 @@ else
$(MAKE) r.$*
endif
# Invoke unfetch.sh, clean.sh, and repo.sh for one or more targets separated by comma
# Invoke unfetch, clean, and repo.sh for one or more targets separated by comma
ucr.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) make $@
@ -128,7 +128,7 @@ else
$(MAKE) cr.$*
endif
# Invoke unfetch.sh and clean.sh for one or more targets separated by comma
# Invoke unfetch and clean for one or more targets separated by comma
uc.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) make $@
@ -137,7 +137,7 @@ else
$(MAKE) c.$*
endif
# Invoke unfetch, clean.sh and fetch.sh for one or more targets separated by comma
# Invoke unfetch, clean and fetch for one or more targets separated by comma
ucf.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) make $@
@ -152,7 +152,7 @@ rp.%: $(FSTOOLS_TAG) FORCE
$(MAKE) r.$*
$(MAKE) p.$*
# Invoke clean.sh, repo.sh and push for one of more targets separated by comma
# Invoke clean, repo.sh and push for one of more targets separated by comma
crp.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) make $@
@ -162,7 +162,7 @@ else
$(MAKE) p.$*
endif
# Invoke unfetch.sh. clean.sh, repo.sh and push for one of more targets separated by comma
# Invoke unfetch. clean, repo.sh and push for one of more targets separated by comma
ucrp.%: $(FSTOOLS_TAG) FORCE
ifeq ($(PODMAN_BUILD),1)
$(PODMAN_RUN) make $@