aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rwxr-xr-xbuild/make_repo.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/make_repo.sh b/build/make_repo.sh
index 940b2cea..f38da7ff 100755
--- a/build/make_repo.sh
+++ b/build/make_repo.sh
@@ -220,17 +220,17 @@ function _try_fetch_dependency()
;;
*)
echo "'$1' cannot be extract()"
- return -1
+ return
;;
esac
else
echo "'$1' is not a valid file"
- return -1
+ return
fi
if [ ! -f ${dir_name}/requirements.txt ]; then
echo "${dir_name}/requirements.txt does not exist"
- return -1
+ return
fi
pip install --download=$2 -r ${dir_name}/requirements.txt