From 9b8a9876fb37d747b949a47c37efd4b21a4dd250 Mon Sep 17 00:00:00 2001 From: alexey-mr Date: Thu, 30 Jun 2016 15:37:46 +0300 Subject: [PATCH] fix double slash because it is not working with s3 repo Change-Id: I60c774242c1da98941463c51e01e4acca697d0b1 --- pre_build_hook | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pre_build_hook b/pre_build_hook index 028855d..1d054c3 100755 --- a/pre_build_hook +++ b/pre_build_hook @@ -42,7 +42,7 @@ do do if [[ ! -f "$destination/$p" || ! -z "${FORCE_DOWNLOAD+x}" ]] then - wget -P "$destination/" "$repo_url/$i/$p" + wget -P "$destination/" "$repo_url$i/$p" fi done done