Compare commits

..

3 Commits

Author SHA1 Message Date
bashonly
d22b59ebac
[build:Makefile] sigs should be covered by make clean-test
Authored by: bashonly
2024-02-15 11:28:11 -06:00
bashonly
837733bada
[build:Makefile] Exclude sigs testdata from tarball
Authored by: bashonly
2024-02-15 11:23:43 -06:00
bashonly
06936d462e
[build:Makefile] Add quotes back to CODE_FILES var
Authored by: bashonly
2024-02-15 08:26:24 -06:00

View File

@ -74,7 +74,7 @@ offlinetest: codetest
$(PYTHON) -m pytest -k "not download" $(PYTHON) -m pytest -k "not download"
CODE_FOLDERS != find yt_dlp -type f -name '__init__.py' -exec dirname {} \+ | grep -v '/__' | sort CODE_FOLDERS != find yt_dlp -type f -name '__init__.py' -exec dirname {} \+ | grep -v '/__' | sort
CODE_FILES != for f in $(CODE_FOLDERS) ; do echo $$f | sed 's,$$,/*.py,' ; done CODE_FILES != for f in $(CODE_FOLDERS) ; do echo "$$f" | sed 's,$$,/*.py,' ; done
yt-dlp: $(CODE_FILES) yt-dlp: $(CODE_FILES)
@echo $(ERROR_MSG) @echo $(ERROR_MSG)
mkdir -p zip mkdir -p zip