diff options
author | Antoine GIRARD <sapk@users.noreply.github.com> | 2020-02-06 22:40:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 23:40:27 +0200 |
commit | 730f026c6e4e189b1c90c020315deee1d7d40de3 (patch) | |
tree | 54f04e1c3df5af926072cbd53b42c2630b25d845 /Makefile | |
parent | 08c9160e71f189223785890279405457ea2e47a7 (diff) | |
download | gitea-730f026c6e4e189b1c90c020315deee1d7d40de3.tar.gz gitea-730f026c6e4e189b1c90c020315deee1d7d40de3.zip |
make: improve make pr (#10165)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -563,9 +563,9 @@ generate-images: rm -rf $(TMPDIR)/images $(foreach file, $(shell find public/img -type f -name '*.png' ! -name 'loading.png'),zopflipng -m -y $(file) $(file);) -.PHONY: pr -pr: - $(GO) run contrib/pr/checkout.go $(PR) +.PHONY: pr\#% +pr\#%: + $(GO) run contrib/pr/checkout.go $* .PHONY: golangci-lint golangci-lint: |