Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug: issue to detect "gh" command if not in /usr #20

Open
e-marchand opened this issue Mar 4, 2025 · 0 comments
Open

Bug: issue to detect "gh" command if not in /usr #20

e-marchand opened this issue Mar 4, 2025 · 0 comments

Comments

@e-marchand
Copy link
Contributor

gh could not be installed or could be installed in homebrew , so at path /opt/homebrew/bin/gh

		$cmd:="find /usr -type f -name gh"
		LAUNCH EXTERNAL PROCESS($cmd; $in; $out; $error)
		This.success:=Bool(OK)

will return empty "$out"

so maybe adding

	If (Length($out)=0)
		$cmd:="which gh"
		LAUNCH EXTERNAL PROCESS($cmd; $in; $out; $error)
                This.success:=(Bool(OK)) && (Length(out)>0)
	End if 

could fix it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant