Skip to content

Commit

Permalink
Changed Todo to now exit 0 always (#1112)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasBrostrom authored Jan 10, 2024
1 parent 93abcdc commit 07ab31d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/checkTodo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ SCRIPTPATH=`dirname $(readlink -f $0)`
cd $SCRIPTPATH/../cScripts

grep -rn "TODO"
[[ ! $(grep -rn "TODO" | wc -l) == 0 ]] && echo "WARNING: TODO found" && exit 1
[[ ! $(grep -rn "TODO" | wc -l) == 0 ]] && echo "WARNING: TODO found" && exit 0

echo "SUCCESS"
exit 0
exit 0

0 comments on commit 07ab31d

Please sign in to comment.