From 499ca5d6d0b05293202bc156b70711529e8b84da Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Sun, 8 May 2022 11:42:23 +0200 Subject: [PATCH] reposinit script bugfix --- reposinit | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/reposinit b/reposinit index f0f6ad5..296745d 100755 --- a/reposinit +++ b/reposinit @@ -1,5 +1,9 @@ -#!/bin/sh +#!/bin/bash # +echo "* Initialising Submodules" +git submodule init +git submodule update + echo "* Intialising Submodules" mkvenv @@ -8,8 +12,8 @@ for path in `find pylibs/ -maxdepth 1 -type d`; do if [[ $path != "pylibs/" ]];then lib=${path#*/} echo Creating symbolic link for library $lib - rm -f venv/lib/python3.9/site-packages/$lib - ln -s ../../../../$path venv/lib/python3.9/site-packages/ + rm -f venv/lib/python*/site-packages/$lib + ln -s ../../../../$path venv/lib/python*/site-packages/ fi done