From 36c9bde04e458eaf2f00bda0acc4477db7485064 Mon Sep 17 00:00:00 2001 From: Roman Azarenko <roman.azarenko@iopsys.eu> Date: Tue, 11 Oct 2022 10:29:53 +0200 Subject: [PATCH] Fix json-cpp variable name --- docker/code-analysis/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/code-analysis/Dockerfile b/docker/code-analysis/Dockerfile index 49d65be..a7b3133 100644 --- a/docker/code-analysis/Dockerfile +++ b/docker/code-analysis/Dockerfile @@ -172,13 +172,13 @@ RUN \ make && \ make install -# nlohmann -ARG NLOHMANN_VERSION=be61ad147000be4802173d0d118fd1b8109b4668 +# json-cpp +ARG JSON_CPP_VERSION=be61ad147000be4802173d0d118fd1b8109b4668 RUN \ cd /opt/dev && \ git clone https://github.com/nlohmann/json.git && \ cd json && \ - git checkout ${NLOHMANN_VERSION} && \ + git checkout ${JSON_CPP_VERSION} && \ mkdir build && \ cd build && \ cmake .. && \ -- GitLab