From 6e235a28c1597751cb09e263747d8235cc372116 Mon Sep 17 00:00:00 2001 From: li-xiaochen <397721316@qq.com> Date: Mon, 10 Mar 2025 00:04:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=9F=E8=83=BD=E4=BF=AE=E5=A4=8D=EF=BC=9A?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=BA=90=E7=A0=81=E6=97=B6=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E6=8C=87=E5=AE=9A=E4=B8=BA=E8=BF=9C=E7=A8=8B=E5=88=86=E6=94=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- launcher/webview/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/webview/api.py b/launcher/webview/api.py index 859c14c..7b0f048 100644 --- a/launcher/webview/api.py +++ b/launcher/webview/api.py @@ -43,7 +43,7 @@ command_list = { "clone": lambda: f"git\\bin\\git -c lfs.concurrenttransfers=100 clone {build_base_url(mower_ng_git_url)} --branch slow", "set_remote": lambda: f"..\\git\\bin\\git remote set-url origin {build_base_url(mower_ng_git_url)}", "set_lfs": lambda: f"..\\git\\bin\\git config lfs.url {build_base_url(mower_ng_git_url)}/info/lfs", - "fetch": lambda: f"..\\git\\bin\\git fetch {build_base_url(mower_ng_git_url)} {config.conf.branch} --progress", + "fetch": lambda: f"..\\git\\bin\\git fetch origin {config.conf.branch} --progress", "switch": lambda: f"..\\git\\bin\\git -c lfs.concurrenttransfers=100 switch -f {config.conf.branch} --progress", "reset": lambda: f"..\\git\\bin\\git -c lfs.concurrenttransfers=200 reset --hard origin/{config.conf.branch}", "pip_tools_install": lambda: f"..\\python\\Scripts\\pip install --no-cache-dir -i {mirror_list[config.conf.mirror]} pip-tools --no-warn-script-location",