Skip to content

Commit

Permalink
don't enforce bash 5 on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Try committed Jul 31, 2020
1 parent 8031e56 commit bd53219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/start.sh
Expand Up @@ -2,7 +2,7 @@

set -euf -o pipefail

if [[ ${BASH_VERSION:0:1} -lt 5 ]]; then
if [[ ${BASH_VERSION:0:1} -lt 5 ]] && [[ "${OSTYPE}" == "darwin" ]]; then
echo "Please upgrade bash to version 5. Currently on ${BASH_VERSION}."
echo
echo " brew install bash"
Expand Down

0 comments on commit bd53219

Please sign in to comment.