File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff 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
221221check-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
227227check-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
233233check-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
239239check-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
245245check-deps : # Dependency targets
You can’t perform that action at this time.
0 commit comments