From d9a4d15adc17b5a8906c44ee8e19efc1fe0fb17d Mon Sep 17 00:00:00 2001 From: Rootul P Date: Mon, 17 Apr 2023 19:50:41 -0400 Subject: [PATCH] chore: address adr-gen feedback (#1632) Addresses https://github.com/celestiaorg/celestia-app/pull/1599#pullrequestreview-1373226138 ## Testing ```shell $ make adr-gen $ git status On branch rp/adr-gen Your branch is up to date with 'origin/rp/adr-gen'. Untracked files: (use "git add ..." to include in what will be committed) docs/architecture/adr-template.md ``` --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6440654c..08533eda 100644 --- a/Makefile +++ b/Makefile @@ -128,8 +128,8 @@ test-cover: @export VERSION=$(VERSION); bash -x scripts/test_cover.sh .PHONY: test-cover -## adr-gen: Download the ADR template from the celestiaorg/.github repo. Ex. `make adr-gen NUM=016 TITLE=my-adr-title` +## adr-gen: Download the ADR template from the celestiaorg/.github repo. Ex. `make adr-gen` adr-gen: - @echo "--> Generating ADR template" - @curl -sSL https://raw.githubusercontent.com/celestiaorg/.github/main/adr-template.md > docs/architecture/adr-$(NUM)-$(TITLE).md + @echo "--> Downloading ADR template" + @curl -sSL https://raw.githubusercontent.com/celestiaorg/.github/main/adr-template.md > docs/architecture/adr-template.md .PHONY: adr-gen