refactor: do early exit and avoid looong if conditional

This commit is contained in:
Mamoru TASAKA 2023-03-09 16:20:27 +09:00
parent f3fc1e2f77
commit 49cabb4d95

View File

@ -102,7 +102,11 @@ cp -a .%{_prefix}/* %{buildroot}%{_prefix}/
rm -f %{buildroot}%{gem_instdir}/{.document,.yardopts}
%check
%if %{without bootstrap}
%if %{with bootstrap}
# Not do actual check, exiting.
exit 0
%endif
LANG=C.UTF-8
%if %{without aruba}
@ -129,7 +133,10 @@ sed -i spec/rspec/core/example_spec.rb \
# FIXME seed 33413 sees test failure
ruby -Ilib -S exe/rspec --seed 1 #33413
%if %{with aruba}
%if %{without aruba}
# The following lines are for cucumber tests, so exiting.
exit 0
%endif
# Mark failing test as broken
sed -i features/command_line/init.feature \
@ -178,10 +185,6 @@ do
done
%endif
%endif
%endif
%files
%dir %{gem_instdir}