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') ]