mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
install-pysolfc.sh: Use bash array for holding a program name and arguments
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.
This commit is contained in:
parent
c2ec2d5195
commit
468553b3c5
1 changed files with 4 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
set -Cefu
|
||||
|
||||
: ${PKGTREE:=/usr/local/packages/PySolFC}
|
||||
PIP="$(printf '%s/env/bin/pip install --no-binary :all: ' "$PKGTREE")"
|
||||
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")"
|
||||
|
@ -11,6 +11,6 @@ reqs='six random2 pillow'
|
|||
make dist
|
||||
for req in $reqs
|
||||
do
|
||||
"$PIP" "$req"
|
||||
"${PIP[@]}" "$req"
|
||||
done
|
||||
"$PIP" --upgrade "$XZBALL"
|
||||
"${PIP[@]}" --upgrade "$XZBALL"
|
||||
|
|
Loading…
Add table
Reference in a new issue