From a8702329732424c44dea3c6ca134e57b2a2c6315 Mon Sep 17 00:00:00 2001 From: Michael Baentsch <57787676+baentsch@users.noreply.github.com> Date: Fri, 9 Aug 2024 16:39:50 +0200 Subject: [PATCH] Update scripts/do_code_format.sh Co-authored-by: Spencer Wilson Signed-off-by: Michael Baentsch <57787676+baentsch@users.noreply.github.com> --- scripts/do_code_format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/do_code_format.sh b/scripts/do_code_format.sh index d77dd364..5c362685 100755 --- a/scripts/do_code_format.sh +++ b/scripts/do_code_format.sh @@ -20,7 +20,7 @@ fi find oqsprov test -name '*.[chS]' -exec file "{}" ";" | grep CRLF if [ $? -ne 1 ]; then echo "Error: Files found with non-UNIX line endings." - echo "To fix, consider running \"find oqsprov tests -name '*.[chS]' | xargs sed -i 's/\r//' \"." + echo "To fix, consider running \"find oqsprov test -name '*.[chS]' | xargs sed -i 's/\r//' \"." rv=-1 fi