reposinit script added

This commit is contained in:
Dirk Alders 2022-05-08 11:23:39 +02:00
parent 1d19ffdd8d
commit 4775415322

View File

@ -1,3 +1,9 @@
#!/bin/sh
#
echo "* Intialising Submodules"
mkvenv
echo "* Linking pylibs to venv"
for path in `find pylibs/ -maxdepth 1 -type d`; do
if [[ $path != "pylibs/" ]];then
lib=${path#*/}