summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/gyp/run-if-exists.sh
blob: 242ffc81b07e9d8802be25f4d7383b6b247ad87a (plain)
1
2
3
4
5
#!/bin/sh

if [ -f $1 ]; then
    $1 || exit $?;
fi