From e220551d81e39c1a8e836ebb7b73fcb2dd384e84 Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Thu, 22 Jun 2017 16:30:25 +0200 Subject: [PATCH] Minor fixes over last commit --- install/from-scratch.sh | 9 +++++---- install/install-ci.sh | 4 ++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/install/from-scratch.sh b/install/from-scratch.sh index 2331df0..112cbd9 100755 --- a/install/from-scratch.sh +++ b/install/from-scratch.sh @@ -3,9 +3,10 @@ set -e -if [ "${#}" != 3 ]; then - echo "usage: `basename $0` <basedir> <name> <python-version> <bob-devel>" - echo "example: `basename $0` /opt/conda bob-devel-py35 3.5 2017.06.06" +if [ "${#}" != 4 ]; then + p=`basename $0` + echo "usage: ${p} <basedir> <name> <python-version> <bob-devel-version>" + echo "example: ${p} /opt/conda bob-devel-py35 3.5 2017.06.20" exit 1 fi @@ -25,6 +26,6 @@ if [ -d ${BASEDIR}/envs/${NAME} ]; then fi echo "[>>] Creating environment ${NAME} for python ${PYTHON_VERSION} with bob dependencies..." -${CONDA} create --yes --name=${NAME} --override-channels --channel=http://www.idiap.ch/software/bob/conda --channel=defaults python=${PYTHON_VERSION} bob-devel=${BOB_DEVEL} +${CONDA} create --yes --name=${NAME} --override-channels --channel=http://www.idiap.ch/software/bob/conda --channel=defaults python=${PYTHON_VERSION} bob-devel=${BOB_DEVEL_VERSION} echo "[>>] Bye!" exit 0 diff --git a/install/install-ci.sh b/install/install-ci.sh index 2c169be..d3640b9 100755 --- a/install/install-ci.sh +++ b/install/install-ci.sh @@ -1,9 +1,9 @@ #!/usr/bin/env bash # Sat 28 Jan 09:16:48 2017 CET -if [ "${#}" != 1 ]; then +if [ "${#}" != 2 ]; then echo "usage: `basename $0` <prefix> <bob-devel-version>" - echo "example: `basename $0` /opt/conda 2017.06.06" + echo "example: `basename $0` /opt/conda 2017.06.20" exit 1 fi -- GitLab