mirror of
https://github.com/opnsense/src.git
synced 2026-03-14 14:42:40 -04:00
12 lines
162 B
Bash
12 lines
162 B
Bash
#! /bin/sh
|
|
if test -e README >/dev/null 2>/dev/null
|
|
then
|
|
if test -e a.non-existant-file >/dev/null 2>/dev/null
|
|
then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|
|
else
|
|
exit 1
|
|
fi
|