Skip to content

Commit

Permalink
Refactor IceGitCliPlatform and use new GtOsSystemInfo>>#findExecutable:
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvc committed Nov 6, 2024
1 parent 67576cc commit 636616c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/GToolkit4Git/IceGitCliPlatform.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ IceGitCliPlatform >> gtDetailsFor: aView [
priority: 10;
items: [ {
{ 'git executable' . self gitExecutable }.
{ 'git path resolved' . [ self resolveGitPath ] on: Error do: [ '' ] }.
{ 'git version' . [ self gitVersion ] on: Error do: [ '' ] }.
{ 'git executable name' . self gitExecutableName }.
{ 'git path resolved' . [ self resolveGitPath ] on: Error do: [ '' ] }.
{ 'git exec path' . [ self gitExecPath ] on: Error do: [ '' ] }.
{ 'valid git' . [ self validateGit ] on: Error do: [ false ] }.
{ 'valid git setup' . [ self validateGitSetup ] on: Error do: [ false ] }.
Expand Down

0 comments on commit 636616c

Please sign in to comment.