diff options
author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2023-06-22 20:32:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 20:32:09 +0200 |
commit | 0951530abc30b663b0f4e697577239ac1d25e8ab (patch) | |
tree | 281f3bd0569e736ff16a5d61cb37dcb001abb95a /doc | |
parent | Merge pull request #13795 from LabNConsulting/chopps/mgmt-lock-cleanup (diff) | |
parent | doc: Fix typo in previous Coverity workflow doc commit. (diff) | |
download | frr-0951530abc30b663b0f4e697577239ac1d25e8ab.tar.xz frr-0951530abc30b663b0f4e697577239ac1d25e8ab.zip |
Merge pull request #13823 from LabNConsulting/aceelindem/workflow-coverity-typo
doc: Fix typo in previous Coverity workflow doc commit.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/developer/workflow.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/developer/workflow.rst b/doc/developer/workflow.rst index 16ec3dc87..6efe5f42f 100644 --- a/doc/developer/workflow.rst +++ b/doc/developer/workflow.rst @@ -1345,12 +1345,12 @@ Coverity static analysis errors prior to submission using the ``scan-build`` command. To use this command, the ``clang-tools`` package must be installed. For example, this can be accomplished on Ubuntu with the ``sudo apt-get install clang-tools`` command. Then, touch the files you want scanned and -invoke the ``scan-file`` command. For example:: +invoke the ``scan-build`` command. For example:: cd ~/GitHub/frr touch ospfd/ospf_flood.c ospfd/ospf_vty.c ospfd/ospf_opaque.c cd build - scan-file make -j32 + scan-build make -j32 The results of the scan including any static analysis errors will appear inline. Additionally, there will a directory in the /tmp containing the Coverity |