Fix directory path for nlohmann
Forgot the update to the mdkir command when updating
the copy location
Change-Id: I64d7d719451dc176f152c43f73a3a61c8c67187e
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
diff --git a/build-unit-test-docker.sh b/build-unit-test-docker.sh
index 1905c9e..1183d77 100755
--- a/build-unit-test-docker.sh
+++ b/build-unit-test-docker.sh
@@ -90,7 +90,7 @@
RUN cp -a cereal-1.2.2/include/cereal/ /usr/include/
RUN wget https://github.com/nlohmann/json/releases/download/v3.0.1/json.hpp
-RUN mkdir /usr/include/nlohmann-json/
+RUN mkdir /usr/include/nlohmann/
RUN cp -a json.hpp /usr/include/nlohmann/
RUN grep -q ${GROUPS} /etc/group || groupadd -g ${GROUPS} ${USER}