Tamarin/lib/buildtools/tamarin_warn

10 lines
132 B
Plaintext
Raw Permalink Normal View History

2017-02-09 21:53:24 +01:00
#!/usr/bin/env bash
if [ -z "$@" ]; then
while read str; do
tamarin_log WARN "${str}"
done
else
tamarin_log WARN "$@"
fi