Closed guilhemferr closed 6 years ago
I've got this warning running ./install on Ubuntu 18.04 LTS
./install
./install.sh: 18: [: Illegal number:
To fix it I replaced the shebang on file install.sh from #! /bin/sh to #!/usr/bin/env bash As you should use it for portability :+1:
install.sh
#! /bin/sh
#!/usr/bin/env bash
Thank you!
I've got this warning running
./install
on Ubuntu 18.04 LTS./install.sh: 18: [: Illegal number:
To fix it I replaced the shebang on file
install.sh
from#! /bin/sh
to#!/usr/bin/env bash
As you should use it for portability :+1: