From 4393c48b9605927bef7c82ca231124400e9d32e6 Mon Sep 17 00:00:00 2001 From: Offray Date: Sat, 13 Apr 2024 21:05:35 -0500 Subject: [PATCH] repoPath fix. --- src/ExoRepo/MCGiteabRepository.class.st | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ExoRepo/MCGiteabRepository.class.st b/src/ExoRepo/MCGiteabRepository.class.st index 96806df..00bb316 100644 --- a/src/ExoRepo/MCGiteabRepository.class.st +++ b/src/ExoRepo/MCGiteabRepository.class.st @@ -28,9 +28,10 @@ MCGiteabRepository >> branches [ | response | response := OrderedDictionary new. OSSUnixSubprocess new - shellCommand: 'restify --class="gt-ellipsis" ', 'https://', self projectPath, '/branches'; + shellCommand: 'restify --class="gt-ellipsis" ', 'https://', self projectPath, '/', self repoPath, '/branches'; redirectStdout; runAndWaitOnExitDo: [ :command :outString | + outString ifEmpty: [^ command ]. (STON fromString: outString) do: [:each | response at: (each at: 'text') put: (each at: 'href') ]