aboutsummaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorNicola Mazzucato <nicola.mazzucato@arm.com>2021-10-26 17:57:15 +0100
committerGirish Pathak <girishpathak@users.noreply.github.com>2021-11-25 16:17:01 +0000
commiteb91097fb5f59b72429e0072c9dcf67445483f69 (patch)
tree406e74e140f99da8460630135a667d703e9f3f5e /docker
parentf0f0aadfeb86310808f013c7679d9cd072c01c48 (diff)
Dockerfile: Fix export PATH for cppcheck and iwyu
There's a typo in the export commands when installing cppcheck and include-what-you-use. This patch replace the mispell of 'fimrware' to 'firmware'. Change-Id: Ie587fc315be5017f8ff381ff79b4c33b3a9b95ff Signed-off-by: Nicola Mazzucato <nicola.mazzucato@arm.com>
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 737f63385b1b..000d4b88982d 100755
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -87,7 +87,7 @@ RUN cwd=$PWD && mkdir "/opt/cppcheck" && cd "/opt/cppcheck" && \
-DFILESDIR=/opt/cppcheck ./source && \
cmake --build . -- install && cd $cwd && \
echo 'export PATH=/opt/cppcheck/bin:${PATH}' >> \
- "/etc/profile.d/50-scp-fimrware-env.sh"
+ "/etc/profile.d/50-scp-firmware-env.sh"
ENV PATH="/opt/cppcheck/bin:${PATH}"
@@ -97,7 +97,7 @@ RUN cwd=$PWD && mkdir "/opt/iwyu" && cd "/opt/iwyu" && \
./iwyu-10 && cmake --build . && \
cd bin && ln -s include-what-you-use iwyu && cd $cwd && \
echo 'export PATH=/opt/iwyu/bin:${PATH}' >> \
- "/etc/profile.d/50-scp-fimrware-env.sh"
+ "/etc/profile.d/50-scp-firmware-env.sh"
ENV PATH="/opt/iwyu/bin:${PATH}"