We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
gh could not be installed or could be installed in homebrew , so at path /opt/homebrew/bin/gh
will return empty "$out"
so maybe adding
could fix it
The text was updated successfully, but these errors were encountered: