mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
ba72994b41
`#!/usr/bin/env bash` should be used to avoid hard paths. To address: dockcross-manylinux-x64: bad interpreter: /bin/bash^M: no such file or directory
7 lines
155 B
Bash
Executable File
7 lines
155 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for PIP in /opt/python/*/bin/pip; do
|
|
$PIP install --disable-pip-version-check --upgrade pip
|
|
$PIP install scikit-build==0.7.1
|
|
done
|