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
pull/8233/head
David Baker 2019-01-23 11:40:21 +00:00
parent 91c037e578
commit a28691f14d
1 changed files with 2 additions and 0 deletions

View File

@ -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() {