From d6151cc51062982dcb8afccb98c3b8ebbeccb54e Mon Sep 17 00:00:00 2001 From: Vladimir Kotal Date: Mon, 29 Jul 2024 13:15:37 +0200 Subject: [PATCH] make Perforce optional --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4402fdb22b9..b5ce6a7b83c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,7 +64,7 @@ RUN apt-get update && \ # hadolint ignore=DL3008,DL3059 RUN architecture=$(uname -m) && if [[ "$architecture" == "aarch64" ]]; then \ echo "aarch64: do not install helix-p4d."; else \ - apt-get install --no-install-recommends -y helix-p4d; fi + apt-get install --no-install-recommends -y helix-p4d || echo "Failed to install Perforce"; fi # compile and install universal-ctags # hadolint ignore=DL3003,DL3008