Skip to content

Commit

Permalink
remove bash -c wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Feb 27, 2024
1 parent a6e2521 commit a11a821
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -494,9 +494,9 @@ $(TEST_TARGET): $(MXENV_TARGET)

.PHONY: test
test: $(FILES_TARGET) $(SOURCES_TARGET) $(PACKAGES_TARGET) $(TEST_TARGET) $(TEST_DEPENDENCY_TARGETS)
@echo "Run tests"
@echo "Run tests with $(TEST_COMMAND)"
@test -z "$(TEST_COMMAND)" && echo "No test command defined"
@test -z "$(TEST_COMMAND)" || bash -c "$(TEST_COMMAND)"
@test -z "$(TEST_COMMAND)" || $(TEST_COMMAND)

.PHONY: test-dirty
test-dirty:
Expand Down

0 comments on commit a11a821

Please sign in to comment.