mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
POSIX does not allow constructs like:
if cmd; then fi
{ }
Add a colon dummy command, except in a test that verifies that such empty
lists do not cause crashes when used as a function definition.
5 lines
43 B
Text
5 lines
43 B
Text
# $FreeBSD$
|
|
set -e
|
|
while false; do
|
|
:
|
|
done
|