From 35dab777b7141cb88ee3ac2607a4ec58939f8079 Mon Sep 17 00:00:00 2001 From: Artem <106631540+rzc0d3r@users.noreply.github.com> Date: Tue, 3 Oct 2023 16:10:32 +0300 Subject: [PATCH] Update mtk.bat (Fixed Crash) If there are spaces in the directory path, passing the path as an argument will cause the command line to fail (with an error that such directory does not exist) :) --- mtk.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtk.bat b/mtk.bat index 6e22f871..8f632f12 100644 --- a/mtk.bat +++ b/mtk.bat @@ -1,3 +1,3 @@ @echo off title MTKClient -python %~dp0\mtk %* \ No newline at end of file +python "%~dp0\mtk" %*