From 82342e48e09eefd2ec01fe5a138dafe1e634ab92 Mon Sep 17 00:00:00 2001 From: Vincent A Date: Thu, 30 Jan 2020 23:31:05 +0100 Subject: [PATCH] tools/setup-virtualenv.sh: run weboob-config last It has the advantage it will not prevent to write the use-weboob-local.sh script if weboob-config fails. --- tools/setup-virtualenv.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/setup-virtualenv.sh b/tools/setup-virtualenv.sh index 39136c4189..38cfcbb636 100755 --- a/tools/setup-virtualenv.sh +++ b/tools/setup-virtualenv.sh @@ -56,8 +56,6 @@ then echo "file://$SRC/modules" > "$WEBOOB_WORKDIR/sources.list" fi -./bin/weboob-config update - cat > use-weboob-local.sh << EOF VDIR="$VDIR" . "$VDIR/bin/activate" @@ -75,3 +73,4 @@ then echo "You can add file://$SRC/modules into $VDIR/workdir/sources.list to use local modules instead of downloading modules." fi +./bin/weboob-config update -- GitLab