From 2aa6e9fffee273b7173dd8969c6a83b4c995587c Mon Sep 17 00:00:00 2001 From: "s.steuer" Date: Sun, 12 Nov 2023 00:22:40 +0100 Subject: [PATCH] =?UTF-8?q?Automatische=20Installation=20der=20Python=20Vi?= =?UTF-8?q?rtual=20Environment,=20falls=20diese=20noch=20nicht=20exisitert?= =?UTF-8?q?=20+=20Flag=20in=20-r=20bei=20Aufruf=20der=20update=5Fdatabase?= =?UTF-8?q?=20ge=C3=A4ndert,=20da=20sonst=20Warnhinweis?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/01_get_rd_dbase.bat | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bin/01_get_rd_dbase.bat b/bin/01_get_rd_dbase.bat index bd1351e..09e3489 100644 --- a/bin/01_get_rd_dbase.bat +++ b/bin/01_get_rd_dbase.bat @@ -1,5 +1,6 @@ @echo off -call cremig_setenv.bat -call %CREMIG%\.venv\Scripts\activate.bat -python %CREMIG_LIB%\update_database.py -rd +CALL cremig_setenv.bat +IF NOT EXIST %CREMIG%\.venv CALL %CREMIG_BIN%\install_py.bat +CALL %CREMIG%\.venv\Scripts\activate.bat +python %CREMIG_LIB%\update_database.py -r deactivate