1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

change script

This commit is contained in:
Jason N. 2024-04-01 08:49:01 -04:00
parent 76edeb887c
commit f8f448e94f
5 changed files with 149 additions and 29 deletions

View file

@ -1,9 +1,9 @@
REPO_TESTS=$(filter-out README.md Makefile,$(shell ls))
REPO_TESTS=$(filter-out README.md Makefile,$(wildcard *))
all: $(REPO_TESTS)
$(REPO_TESTS):
chmod +x $*
./$*
chmod +x $@
./$@
.PHONY: $(REPO_TESTS)