From a28691f14dbe83ed41c932386424cc850685a277 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 23 Jan 2019 11:40:21 +0000 Subject: [PATCH] Add returns to fetch-develop-deps These look necessary for https://github.com/vector-im/riot-web/pull/8225 to work - the build is failing on jenkins --- scripts/fetch-develop.deps.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/fetch-develop.deps.sh b/scripts/fetch-develop.deps.sh index f3c6a5c4cb..b748088adb 100755 --- a/scripts/fetch-develop.deps.sh +++ b/scripts/fetch-develop.deps.sh @@ -27,7 +27,9 @@ function clone() { echo "Trying to use $org/$repo#$branch" git clone https://github.com/$org/$repo.git $repo --branch $branch \ "${GIT_CLONE_ARGS[@]}" + return $? fi + return 1 } function dodep() {