Browse Source

reposinit script added

master
Dirk Alders 2 years ago
parent
commit
4775415322
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      reposinit

link.sh → reposinit View File

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

Loading…
Cancel
Save