You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello @kotakanbe, Yes I'll do some tests 'cause I think this coding form: if [[ condition == expected ]]; then; else; fi or [[ condition ]] && true || false will not work with /bin/sh. I think this coding form is only supported by /bin/bash.
As far as I remember, /bin/sh will only support this form: if [ condition = expected ]; then; else; fi.
I'll do some research, do some tests and let you know. From there we will be able to take a decision.
Hello @kotakanbe, I've spotted that most of the script are using
sh
as interpreter but the documentation is usingsudo bash install.sh
as shown here.Would it not be better to simply change the default interpreter to
bash
instead ofsh
and update the documentation accordingly?Let me know if you agree and I can do the necessary pull requests.
The text was updated successfully, but these errors were encountered: