Skip to content

Commit 3202865

Browse files
authored
fix: add version and status to .PHONY targets in Makefile (#49)
The `make version` and `make status` commands were not working because they were not declared as .PHONY targets. Make was treating them as file targets and reporting "up to date" without executing the commands.
1 parent 4d56615 commit 3202865

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# make install-hooks - Install git pre-commit hooks
1717
# make help - Show this help message
1818

19-
.PHONY: help validate test sync-check sync-report extract-openapi regenerate install-hooks clean
19+
.PHONY: help validate test sync-check sync-report extract-openapi regenerate install-hooks clean version status
2020

2121
# Default target
2222
.DEFAULT_GOAL := help

0 commit comments

Comments
 (0)