Skip to content

Commit

Permalink
Merge pull request #66 from nexB/check-for-thirdparty-dir
Browse files Browse the repository at this point in the history
Properly check for existance of thirdparty dir
  • Loading branch information
JonoYang authored Apr 28, 2022
2 parents f3d1fcd + 5431ee5 commit 435e9ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ CFG_BIN_DIR=$CFG_ROOT_DIR/$VIRTUALENV_DIR/bin
################################
# Thirdparty package locations and index handling
# Find packages from the local thirdparty directory or from thirdparty.aboutcode.org
if [ -f "$CFG_ROOT_DIR/thirdparty" ]; then
if [ -d "$CFG_ROOT_DIR/thirdparty" ]; then
PIP_EXTRA_ARGS="--find-links $CFG_ROOT_DIR/thirdparty"
fi
PIP_EXTRA_ARGS="$PIP_EXTRA_ARGS --find-links https://thirdparty.aboutcode.org/pypi/simple/links.html"
Expand Down

0 comments on commit 435e9ee

Please sign in to comment.