@ -52,6 +52,7 @@ static_analysis:
script:
# - cppcheck --enable=all --check-config src
- cppcheck src
- script/build_compile_commands.py
- run-clang-tidy -fix src
# artifacts:
# reports:
@ -17,7 +17,6 @@ def shlex_quote(s):
if not s:
return u"''"
if re.search(r'[^\w@%+=:,./-]', s) is None:
print(s)
return s
return u"'" + s.replace(u"'", u"'\"'\"'") + u"'"