mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
The previous scalar variable with quoted "$PIP" caused a "command not found" error because that erroneously put prog name and arguments in a single token.
16 lines
448 B
Bash
Executable file
16 lines
448 B
Bash
Executable file
#!/bin/bash
|
|
set -Cefu
|
|
|
|
: ${PKGTREE:=/usr/local/packages/PySolFC}
|
|
PIP=("${PKGTREE}/env/bin/pip" install --no-binary :all:)
|
|
PYPROG="$(printf '%s/env/bin/python' "$PKGTREE")"
|
|
VERSION="$(env PYTHONPATH=`pwd` "$PYPROG" -c 'from pysollib.settings import VERSION ; print(VERSION)')"
|
|
XZBALL="$(printf 'dist/PySolFC-%s.tar.xz' "$VERSION")"
|
|
reqs='six random2 pillow'
|
|
|
|
make dist
|
|
for req in $reqs
|
|
do
|
|
"${PIP[@]}" "$req"
|
|
done
|
|
"${PIP[@]}" --upgrade "$XZBALL"
|