Skip to content

Commit

Permalink
Merge pull request #379 from LeaYeh/docs-valgrind-cmd-exit-code
Browse files Browse the repository at this point in the history
  • Loading branch information
LeaYeh authored Sep 10, 2024
2 parents f52722a + 20d9110 commit e5f43d3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,10 @@ export IGNORED_PATHS="/bin/* /usr/bin/* /usr/sbin/* $(which -a norminette)"
export VALGRINDFLAGS+=" --trace-children-skip=$(echo $IGNORED_PATHS | sed '"'"'s/ /,/g'"'"')"
export PATH="/bin:/usr/bin:/usr/sbin:$PATH"
$VALGRIND $VALGRINDFLAGS $VALGRINDFDFLAGS ./minishell
EXIT_CODE=$?
rm -f $SUPPRESSION_FILE
echo "Exit code: $EXIT_CODE"
exit $EXIT_CODE
'
```

Expand Down

0 comments on commit e5f43d3

Please sign in to comment.