Commit 039e354b by Carlos Martín Nieto

ciscript: don't use an empty string as a number

An empty string is not a valid number, and some shells complain.

Check instead if $COVERITY is non-empty, which is a common convention
and what we're doing anyway.
parent 891b0277
#!/bin/sh
if [ "$COVERITY" -eq 1 ];
if [ -n "$COVERITY" ];
then
./script/coverity.sh;
exit $?;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment