mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
273182310c
llvm-svn: 98909
11 lines
176 B
Bash
Executable File
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
|