Browse Source

优化dvc

pull/268/head
chenzhihang 8 months ago
parent
commit
a2f1c0532b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java

+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/DVCUtils.java View File

@@ -442,7 +442,7 @@ public class DVCUtils {
.forEach(ref -> {
String fullBranchName = ref.getName();
String branchName = fullBranchName.replace("refs/remotes/origin/", "");
if ("master".equals(branchName)) {
if (!"master".equals(branchName)) {
try {
completionService.submit(() -> {
try {


Loading…
Cancel
Save