Skip to content

Commit

Permalink
Fix handling --download option with predefined options in preferences…
Browse files Browse the repository at this point in the history
… file
  • Loading branch information
andyone committed Feb 4, 2020
1 parent ec2d428 commit fbba455
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SOURCES/libexec/build.shx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ startBuild() {

trap termExit SIGINT SIGQUIT SIGTERM

if [[ -n "$parallel" && $(wc -l "${remote/:*/}" | cut -f1 -d" ") -gt 1 ]] ; then
if [[ -z "$download" && -n "$parallel" && $(wc -l "${remote/:*/}" | cut -f1 -d" ") -gt 1 ]] ; then
if [[ "${remote/:*/}" != "$remote" ]] ; then
basicBuild "$@"
else
Expand Down
2 changes: 1 addition & 1 deletion SOURCES/rpmbuilder
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fi
APP="RPMBuilder"

# Utility version (String)
VER="2.7.0"
VER="2.7.1"

################################################################################

Expand Down
5 changes: 4 additions & 1 deletion rpmbuilder.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Summary: RPM package build helper
Name: rpmbuilder
Version: 2.7.0
Version: 2.7.1
Release: 0%{?dist}
License: EKOL
Group: Development/Tools
Expand Down Expand Up @@ -55,6 +55,9 @@ rm -rf %{buildroot}
################################################################################

%changelog
* Wed Feb 05 2020 Anton Novojilov <andy@essentialkaos.com> - 2.7.1-0
- Fixed handling --download option with predefined options in preferences file

* Tue Feb 04 2020 Anton Novojilov <andy@essentialkaos.com> - 2.7.0-0
- Updated options parser to the latest version
- Improved preferences parser
Expand Down

0 comments on commit fbba455

Please sign in to comment.