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