From fbd1ebcebf75cfc1576a9fda78ddb41fdb333b11 Mon Sep 17 00:00:00 2001 From: gabime Date: Sun, 14 Jan 2024 12:44:52 +0200 Subject: [PATCH] Fixed format.sh script --- scripts/format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/format.sh b/scripts/format.sh index 8eb01fb9..2a4b6163 100755 --- a/scripts/format.sh +++ b/scripts/format.sh @@ -2,7 +2,7 @@ cd "$(dirname "$0")"/.. pwd -find_sources="find include src tests example bench -not ( -path include/spdlog/fmt/bundled -prune ) -type f -name *\.h -o -name *\.cpp" +find_sources="find include src tests example bench -type f -name *\.h -o -name *\.cpp" echo -n "Running dos2unix " $find_sources | xargs -I {} sh -c "dos2unix '{}' 2>/dev/null; echo -n '.'" echo