mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-09 20:57:26 +01:00
28 lines
418 B
Bash
Executable File
28 lines
418 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
PYTHON=python
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
-python)
|
|
PYTHON=$2
|
|
shift
|
|
;;
|
|
*)
|
|
echo "Usage: Usage: ${0##*/} [-python /path/to/bin/python]"
|
|
exit 1
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
cd /tmp
|
|
|
|
curl -# -LO https://bootstrap.pypa.io/get-pip.py
|
|
${PYTHON} get-pip.py --ignore-installed
|
|
rm get-pip.py
|
|
|
|
${PYTHON} -m pip install --ignore-installed conan
|