Skip to content

Commit f6352ba

Browse files
authored
👻 Latest hub - fixes tags. (#85)
go-mod in: konveyor/tackle2-hub#967 More human readable home directories for svn and git. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated an internal dependency to a newer patch release for stability. * **Bug Fixes** * Adjusted repository metadata storage locations to resolve path issues and improve repository handling. <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Signed-off-by: Jeff Ortel <[email protected]>
1 parent 796f47b commit f6352ba

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.22.0
66

77
require (
88
github.com/go-logr/logr v1.4.1
9-
github.com/konveyor/tackle2-hub v0.9.0-alpha.1.0.20251201140238-d91e19c75c6d
9+
github.com/konveyor/tackle2-hub v0.9.0-alpha.1.0.20251202133231-c937c30f820f
1010
)
1111

1212
require (

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o
153153
github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
154154
github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk=
155155
github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY=
156-
github.com/konveyor/tackle2-hub v0.9.0-alpha.1.0.20251201140238-d91e19c75c6d h1:FMJK/ydKQuvGb0TW7kiwSn3JIWJvpCMs4DSTbz6yIXY=
157-
github.com/konveyor/tackle2-hub v0.9.0-alpha.1.0.20251201140238-d91e19c75c6d/go.mod h1:CtDv5VlIpjKHP2W0ngZo16kmp4GBf+IC6EEt+Zr4/x8=
156+
github.com/konveyor/tackle2-hub v0.9.0-alpha.1.0.20251202133231-c937c30f820f h1:v2dC0WUXfTXw+XJz5LuoqjauoUp0xvEu6lL0+Ofr4Xc=
157+
github.com/konveyor/tackle2-hub v0.9.0-alpha.1.0.20251202133231-c937c30f820f/go.mod h1:CtDv5VlIpjKHP2W0ngZo16kmp4GBf+IC6EEt+Zr4/x8=
158158
github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
159159
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
160160
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=

scm/pkg.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func New(destDir string, repository api.Repository, identity *api.Identity) (r S
5959
svn := &Subversion{}
6060
svn.Remote = remote
6161
svn.Path = destDir
62-
svn.Home = path.Join(Dir, svn.Id())
62+
svn.Home = path.Join(Dir, ".svn", svn.Id())
6363
svn.Proxies, err = proxyMap()
6464
if err != nil {
6565
return
@@ -73,7 +73,7 @@ func New(destDir string, repository api.Repository, identity *api.Identity) (r S
7373
git := &Git{}
7474
git.Remote = remote
7575
git.Path = destDir
76-
git.Home = path.Join(Dir, git.Id())
76+
git.Home = path.Join(Dir, ".git", git.Id())
7777
git.Proxies, err = proxyMap()
7878
if err != nil {
7979
return

0 commit comments

Comments
 (0)