Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 2c166ac44fa67e98a53594903c2bd9407fe04789
Author: Whirlwind <[email protected]>
Date:   Mon Aug 30 18:50:02 2021 +0800

    [Fixed] Support subgroup for gitlab
  • Loading branch information
liyao.ryan committed Aug 30, 2021
1 parent 6d2ab34 commit 82a3ee8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Native/MBoxWorkspace/CLI/Go.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ extension MBCommander {
}

open override class var description: String? {
return "Quckly open workspace."
return "Quickly open path or workspace."
}

open override class func autocompletion(argv: ArgumentParser) -> [String] {
Expand Down
2 changes: 1 addition & 1 deletion Native/MBoxWorkspaceCore/Model/MBConfig.Repo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ extension MBConfig {
}
if let gitURL = gitURL {
self.url = gitURL.url
fullName ?= gitURL.project + "@" + gitURL.group
fullName ?= gitURL.project + "@" + gitURL.groups.reversed().joined(separator: "@")
}
if fullName == nil, let path = path {
fullName = path.lastPathComponent
Expand Down

0 comments on commit 82a3ee8

Please sign in to comment.