This issue pertains to ads-github-tools-0.3.3 (and all previous versions).
The configure script looks for a program named git-hub on $PATH at configure time, but at runtime the invocation used is that for Git subcommands (git hub ...). That means the location of the git-hub program found at runtime is dependent upon the user's current $PATH rather than the $PATH as it was set at configure time.
We ought to be able to simply invoke git-hub directly, since the invocation as a Git subcommand does not provide any additional capability AFAIK. Will require some testing to confirm.
This issue pertains to
ads-github-tools-0.3.3(and all previous versions).The
configurescript looks for a program namedgit-hubon$PATHat configure time, but at runtime the invocation used is that for Git subcommands (git hub ...). That means the location of thegit-hubprogram found at runtime is dependent upon the user's current$PATHrather than the$PATHas it was set at configure time.We ought to be able to simply invoke
git-hubdirectly, since the invocation as a Git subcommand does not provide any additional capability AFAIK. Will require some testing to confirm.