From afb2928ac7d59b81c01a6abb86a1abbef2d935b9 Mon Sep 17 00:00:00 2001 From: fanshuai <1141904845@qq.com> Date: Fri, 20 Sep 2024 16:42:30 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E6=88=90=E5=BC=BA=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/ruoyi/platform/utils/DVCUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java b/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java index 20350123..c46ef958 100644 --- a/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java +++ b/ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java @@ -603,14 +603,14 @@ public class DVCUtils { // 强制刷新 dvcPull 方法 public void dvcPull(String localPath) throws Exception { - String command = "dvc pull --force"; + String command = "dvc pull -v --force"; runCommand(command, localPath); } // 方法 public void dvcCheckout(String localPath) throws Exception { - String command = "dvc checkout"; + String command = "dvc checkout -v --force"; runCommand(command, localPath); }