Skip to content

Commit

Permalink
un-hardcode tqdm package name
Browse files Browse the repository at this point in the history
  • Loading branch information
lbdreyer committed Apr 3, 2018
1 parent c4e993d commit 1ec0504
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conda_rpms/tests/integration/gitenv_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ source activate test-installer
# Run the conda_rpms installer
# ----------------------------
# Get the name of the noarch_package, e.g. tqdm-4.19.8-py_0
#noarch_tqdm=$(find $MINICONDA_DIR/pkgs -type d -name "tqdm-*-py*" | rev | cut -d"/" -f1-1 | rev)
#echo $noarch_tqdm
python /repo/conda_rpms/install.py --pkgs-dir=$MINICONDA_DIR/pkgs --prefix=$MINICONDA_DIR/envs/test-env --link tqdm-4.19.8-py_0
noarch_tqdm=$(basename $(find $MINICONDA_DIR/pkgs -type d -name "tqdm-*-py*"))
echo $noarch_tqdm
python /repo/conda_rpms/install.py --pkgs-dir=$MINICONDA_DIR/pkgs --prefix=$MINICONDA_DIR/envs/test-env --link $noarch_tqdm
# Check that everything is there
Expand Down

0 comments on commit 1ec0504

Please sign in to comment.