From 930602798772a14884edad04f7314d71ac4c3a90 Mon Sep 17 00:00:00 2001 From: amai2012 Date: Sat, 13 Oct 2018 18:39:37 +0200 Subject: [PATCH] Update runastyle (#1421) Try to format cppcheck.1.xml via xmllint as suggested in https://github.com/danmar/cppcheck/pull/1420 --- runastyle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/runastyle b/runastyle index 7d5c6c0d2..9d361c340 100755 --- a/runastyle +++ b/runastyle @@ -1,3 +1,4 @@ + #!/bin/bash # The version check in this script is used to avoid commit battles # between different developers that use different astyle versions as @@ -54,3 +55,6 @@ do xmllint --format -o ${PLATFORMFILE}_ ${PLATFORMFILE} mv -f ${PLATFORMFILE}_ ${PLATFORMFILE} done + +xmllint --format -o man/cppcheck.1.xml_ man/cppcheck.1.xml +mv -f man/cppcheck.1.xml_ man/cppcheck.1.xml