Skip to content

Commit d6f59e2

Browse files
committed
Fixing broken make commands
1 parent 345472f commit d6f59e2

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

Makefile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -219,27 +219,27 @@ CHANGELOG_LINES := $(shell git diff HEAD..origin/stable HISTORY.md 2>&1 | wc -l)
219219

220220
.PHONY: check-clean
221221
check-clean: ## Check if the directory has uncommitted changes
222-
ifneq ($(CLEAN_DIR),)
223-
$(error There are uncommitted changes)
224-
endif
222+
ifneq ($(CLEAN_DIR),)
223+
$(error There are uncommitted changes)
224+
endif
225225

226226
.PHONY: check-main
227227
check-main: ## Check if we are in main branch
228-
ifneq ($(CURRENT_BRANCH),main-clone)
229-
$(error Please make the release from main branch\n)
230-
endif
228+
ifneq ($(CURRENT_BRANCH),main-clone)
229+
$(error Please make the release from main branch\n)
230+
endif
231231

232232
.PHONY: check-candidate
233233
check-candidate: ## Check if a release candidate has been made
234-
ifeq ($(CURRENT_VERSION),dev0)
235-
$(error Please make a release candidate and test it before atempting a release)
236-
endif
234+
ifeq ($(CURRENT_VERSION),dev0)
235+
$(error Please make a release candidate and test it before atempting a release)
236+
endif
237237

238238
.PHONY: check-history
239239
check-history: ## Check if HISTORY.md has been modified
240-
ifeq ($(CHANGELOG_LINES),0)
241-
$(error Please insert the release notes in HISTORY.md before releasing)
242-
endif
240+
ifeq ($(CHANGELOG_LINES),0)
241+
$(error Please insert the release notes in HISTORY.md before releasing)
242+
endif
243243

244244
.PHONY: check-deps
245245
check-deps: # Dependency targets

0 commit comments

Comments
 (0)