From 8863faac6f45c76febbe2ddd8805e44ccdd506f2 Mon Sep 17 00:00:00 2001 From: Nizamudeen A Date: Wed, 6 Apr 2022 13:09:26 +0530 Subject: [PATCH] build: install-deps failing in docker build install-deps.sh was failing in our docker build due to the recent change in the script. Failure can be seen here: https://github.com/rhcs-dashboard/ceph-dev/runs/5844502455?check_suite_focus=true#step:3:2586 This seems to fix the issue. Signed-off-by: Nizamudeen A (cherry picked from commit 72841fdcbe5445b5f5ada5d244d497f0b3f04e4f) --- install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-deps.sh b/install-deps.sh index 9be08af2990..58abb997f01 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -514,4 +514,4 @@ if $for_make_check; then type git > /dev/null || (echo "Dashboard uses git to pull dependencies." ; false) fi -in_jenkins && echo "CI_DEBUG: End install-deps.sh" +in_jenkins && echo "CI_DEBUG: End install-deps.sh" || true -- 2.47.3