YouCompleteMe/cpp/llvm/test/Scripts/ignore

11 lines
176 B
Plaintext
Raw Normal View History

2012-07-05 20:51:06 -04:00
#!/bin/sh
#
# Program: ignore
#
# Synopsis: Ignore the result code of the command and always return 0
#
# Syntax: ignore command <arguments>
"$@" || exit 0 && exit 0
exit 0