-
Notifications
You must be signed in to change notification settings - Fork 72
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
Fix yad version check if statement #239
Conversation
I was having stl report that my version of yad was '0'. Having checked the code I found that the $YAD variable was just set to 'yad' which meant that it would be checking for a file called yad in the current directory. Swapping to command -v which will use the PATH variable to determine if yad is present.
Hello Alan, |
Just pushed a possible fix. Please check if this fixes it for you as well. |
Hey mate, Yeah that sounds sane. I will take a look at the code and have a go at implementing this shortly. Thanks, Alan |
Oh, wait, don't miss my previous comment! It might be already fixed in current master! |
Ah yes that looks good. I will install the latest and retest my end. If it is all good I will report back and close this PR. Thanks for all your good work mate! |
Thanks for your friendly feedback, mate! :) |
OK I can confirm that the latest version works fine again so no changes are required. Closing this PR. |
Cool, thanks for testing! :) |
I was having stl report that my version of yad was '0'. Having checked
the code I found that the $YAD variable was just set to 'yad' which
meant that it would be checking for a file called yad in the current
directory. Swapping to command -v which will use the PATH variable to
determine if yad is present.