Makefile added with Version 2.5

This commit is contained in:
Dirk Alders 2025-08-13 21:57:56 +02:00
parent d0844f7494
commit 4be3f4be30

View File

@ -1,4 +1,4 @@
# git helper Makefile: Version 2.4 (2025-08-11)
# git helper Makefile: Version 2.5 (2025-08-11)
default: help
.ONESHELL:
@ -64,7 +64,7 @@ init: print_head
# Install modules
#
echo -e "\033[1;33mInstalling modules to venv in $$BASEPATH...\e[0m"
for req_file in $$(find $$BASEPATH -name requirements.txt); do
for req_file in $$(find -L $$BASEPATH -name requirements.txt 2> /dev/null); do
# echo " $$req_file"
while read req_mod; do
if [[ $$req_mod = *[![:space:]]* ]]; then