Fixing installation path and upgrading to nlohmann 3.0.1
Fixing an issue that popped up in verifying
https://gerrit.openbmc-project.xyz/#/c/8042/
and updating to the latest nlohmann version.
Change-Id: Iaebf924d82f29d4effaf3ef16963633f4dbe8cab
Signed-off-by: David Cobbley <david.j.cobbley@linux.intel.com>
diff --git a/build-unit-test-docker.sh b/build-unit-test-docker.sh
index 7c9249a..1905c9e 100755
--- a/build-unit-test-docker.sh
+++ b/build-unit-test-docker.sh
@@ -89,9 +89,9 @@
RUN tar -xzf v1.2.2.tar.gz
RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/
-RUN wget https://github.com/nlohmann/json/releases/download/v3.0.0/json.hpp
+RUN wget https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
RUN mkdir /usr/include/nlohmann-json/
-RUN cp -a json.hpp /usr/include/nlohmann-json/
+RUN cp -a json.hpp /usr/include/nlohmann/
RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}
RUN grep -q ${UID} /etc/passwd || useradd -d ${HOME} -m -u ${UID} -g ${GROUPS} ${USER}