Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upCreating a file called 101300 #60
Comments
This comment has been minimized.
This comment has been minimized.
jameswmcnab
commented
Feb 19, 2019
I am also seeing this behaviour. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
REBELinBLUE commentedFeb 3, 2019
•
edited
brew-php-switcher is creating a file called 101300 whenever I run it
Changing line 25 from
if [ ${osx_version} > 101300 ]; then
to either
if (( ${osx_version} > 101300 )); then
orif [[ $(echo "$osx_version") -ge 101300 ]]; then
fixes it