From 468553b3c51a0ff0f1197515a2f18a0df9e81985 Mon Sep 17 00:00:00 2001 From: Juhani Numminen Date: Mon, 3 Feb 2020 10:56:59 +0200 Subject: [PATCH] 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. --- contrib/install-pysolfc.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/install-pysolfc.sh b/contrib/install-pysolfc.sh index 1d2e13f7..f483b279 100755 --- a/contrib/install-pysolfc.sh +++ b/contrib/install-pysolfc.sh @@ -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"