From: Nizamudeen A Date: Wed, 6 Apr 2022 07:39:26 +0000 (+0530) Subject: build: install-deps failing in docker build X-Git-Tag: v18.0.0~1104^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F45791%2Fhead;p=ceph.git 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 --- diff --git a/install-deps.sh b/install-deps.sh index 90912ac76847..dcf988696352 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -544,4 +544,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