install_deps.sh: No longer forcing Alembic sources to be redownloaded

For no apparent reason, when building Alembic the script would always
re-download and re-extract the Alembic source code. This is no longer the
case, and it now only happens if the source directory is missing. Since the
source directory name contains the Alembic version, it will automatically
trigger a download+extract when the version changes.
This commit is contained in:
Sybren A. Stüvel 2019-12-24 11:29:37 +01:00
parent d616938449
commit 4c295ad478
1 changed files with 1 additions and 1 deletions

View File

@ -2353,7 +2353,7 @@ compile_ALEMBIC() {
prepare_opt
if [ ! -d $_src -o true ]; then
if [ ! -d $_src ]; then
mkdir -p $SRC
download ALEMBIC_SOURCE[@] "$_src.tar.gz"