From ffd95e26af4cc7c115e2172bb1ba84a473640c4d Mon Sep 17 00:00:00 2001 From: Ashutosh Srivastava Date: Mon, 18 Mar 2024 08:01:50 +0530 Subject: [PATCH] fix Signed-off-by: Ashutosh Srivastava --- scripts/cspell/spellcheck.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/cspell/spellcheck.sh b/scripts/cspell/spellcheck.sh index 2bcc7d5b..e77b148f 100755 --- a/scripts/cspell/spellcheck.sh +++ b/scripts/cspell/spellcheck.sh @@ -1,7 +1,8 @@ #!/bin/bash -if ! sort -c project-words.txt; then \ - echo "project-words.txt is not sorted." && exit 1; \ +if ! sort -c project-words.txt; then + echo "project-words.txt is not sorted." + exit 1 fi npm install cspell npm run spellcheck \ No newline at end of file