From 35adba3605c021d6b15ff5a83e2ea09a9778ea3f Mon Sep 17 00:00:00 2001 From: nyutie <104139738+nyutie@users.noreply.github.com> Date: Sun, 7 Apr 2024 17:10:27 +0200 Subject: [PATCH] Use python cli in windows script This is to avoid windows filetype association, which could open the file in say a text editor. --- install_windows.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_windows.bat b/install_windows.bat index 652527f..92b7550 100644 --- a/install_windows.bat +++ b/install_windows.bat @@ -146,12 +146,12 @@ GOTO DEFAULT_SECTION :: --- Install --- :INSTALL_SECTION -install.py -c %CHOSEN_COLORTHEME% %CHOSEN_NO_ROUNDED_CORNERS% %CHOSEN_HIDE_WHATS_NEW% %CHOSEN_SIDEBAR_HOVER_ONLY% %CHOSEN_LOGIN_QR% %WINDOW_CONTROLS% +python install.py -c %CHOSEN_COLORTHEME% %CHOSEN_NO_ROUNDED_CORNERS% %CHOSEN_HIDE_WHATS_NEW% %CHOSEN_SIDEBAR_HOVER_ONLY% %CHOSEN_LOGIN_QR% %WINDOW_CONTROLS% GOTO END_SECTION :: --- Uninstall --- :UNINSTALL_SECTION -install.py -u +python install.py -u GOTO END_SECTION :: --- End ---