/srv/osrm/osrm-backend/scripts
NameSizeModeActions
ci/-0755rm
analyze.sh7910755editdlrm
bisect_cucumber.sh7810755editdlrm
build_api_docs.sh15810755editdlrm
check_taginfo.py15180755editdlrm
error_on_dirty.sh2430755editdlrm
format.sh9890755editdlrm
gdb_printers.py192960644editdlrm
md5sum.js22460755editdlrm
modernize.sh5350755editdlrm
node_install.sh4030755editdlrm
osm2cucumber.js15680644editdlrm
osrm-runner.js65310755editdlrm
poly2req.js33160755editdlrm
tidy.sh5230755editdlrm
timer.js4840755editdlrm
update_dependencies.sh14910755editdlrm
validate_changelog.js14870644editdlrm
Edit: /srv/osrm/osrm-backend/scripts/modernize.sh (535B)
#!/usr/bin/env bash set -o errexit set -o pipefail set -o nounset # Runs the Clang Modernizer in parallel on the code base. # Requires a compilation database in the build directory. find src include unit_tests -type f -name '*.hpp' -o -name '*.cpp' \ | xargs \ -I{} \ -P $(nproc) \ clang-modernize \ -p build \ -final-syntax-check \ -format \ -style=file \ -summary \ -for-compilers=clang-3.4,gcc-4.8 \ -include . \ -exclude third_party \ {}