aboutsummaryrefslogtreecommitdiff
path: root/src/wrappers/checkin.sh
blob: c9c564a23201253d68b85139ebe6d6a8db79f4e7 (plain)
1
2
3
4
5
6
7
# Check if input files exist.
for f; do
    if [ -n "$f" ] && ! [ -f "$f" ]; then
        err "File '$f' not found."
        exit 1
    fi
done