YouCompleteMe/cpp/llvm/test/Scripts/ignore
2012-07-05 17:51:06 -07:00

11 lines
176 B
Bash
Executable File

#!/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