Fix the baserelease sanity check

We need to explicitly check for 0, so that we can do things like setting
baserelease to 1.1 for scratch builds, etc.
This commit is contained in:
Josh Boyer 2011-11-22 10:36:27 -05:00
parent 73d229109d
commit 03734ddcf2
1 changed files with 1 additions and 1 deletions

View File

@ -909,7 +909,7 @@ exit 1
%endif
%endif
%if !%{baserelease}
%if "%{baserelease}" == "0"
echo "baserelease must be greater than zero"
exit 1
%endif