]> git.saurik.com Git - apple/javascriptcore.git/blob - gyp/run-if-exists.sh
JavaScriptCore-903.tar.gz
[apple/javascriptcore.git] / gyp / run-if-exists.sh
1 #!/bin/sh
2
3 if [ -f $1 ]; then
4 $1 || exit $?;
5 fi