Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StaticLibrary.sh « StaticLibrary « Simple « src « tests - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6640f629fca093c59320ffc841501856bdcc79e5 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
$1/$2
if [ $? == 100 ]; then
    echo pass
    exit 0
else
    echo fail
    exit 1
fi