Closed hlascelles closed 2 months ago
If you run this script, say, in docker, it uses sh: https://github.com/tvdsluijs/sh-python-installer/blob/34905d6d66bcab9405d6292685256cf6397fbe5f/python.sh#L1
sh
But that fails as the script requires bash:
43: python.sh: [[: not found
Should the shebang be changed:
# From: #!/usr/bin/env sh # To: #!/usr/bin/env bash
Consider it done
:bow:
If you run this script, say, in docker, it uses
sh
: https://github.com/tvdsluijs/sh-python-installer/blob/34905d6d66bcab9405d6292685256cf6397fbe5f/python.sh#L1But that fails as the script requires bash:
Should the shebang be changed: