Skip to content

Commit

Permalink
Merge pull request #101 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 2.11.4
  • Loading branch information
andyone authored Dec 5, 2021
2 parents 5a55df7 + b5edba1 commit 80d954d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions SOURCES/libexec/observer.shx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
startStatusObserver() {
[[ -n "$verbose" ]] && return 0

showt "${CL_GREEN}Executing:${CL_NORM} ${CL_CYAN}~${CL_NORM}"
showt "${CL_GREEN}Executing:${CL_NORM} ${CL_DARK}~${CL_NORM}"

statusObserver &
observer_pid=$!
Expand All @@ -26,7 +26,7 @@ stopStatusObserver() {
kill "$observer_pid" &> /dev/null
wait "$observer_pid" &> /dev/null

showm "${CL_GREEN}Executing:${CL_NORM} ${CL_CYAN}clean${CL_NORM} "
showt "${CL_GREEN}Executing:${CL_NORM} ${CL_CYAN}clean${CL_NORM} "
show ""

unset observer_pid
Expand All @@ -51,7 +51,7 @@ statusObserver() {
fi
fi

if [[ "$status" != "$prev_status+$bld_time" ]] ; then
if [[ "$status" != "$prev_status+$bld_time" && -n "$status" ]] ; then
grc_time=$(getGraceDuration "$build_start" "$cur_time")
showt "${CL_GREEN}Executing:${CL_NORM} ${CL_CYAN}$status${CL_NORM} ${CL_DARK}($grc_time)${CL_NORM}"
prev_status="$status+$bld_time"
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.11.3"
VER="2.11.4"

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

Expand Down
6 changes: 5 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.11.3
Version: 2.11.4
Release: 0%{?dist}
License: Apache License, Version 2.0
Group: Development/Tools
Expand Down Expand Up @@ -55,6 +55,10 @@ rm -rf %{buildroot}
################################################################################

%changelog
* Mon Dec 06 2021 Anton Novojilov <[email protected]> - 2.11.4-0
- Fixed minor bug with printing build stage
- Code refactoring

* Wed Nov 17 2021 Anton Novojilov <[email protected]> - 2.11.3-0
- Fixed major bug with checking the availability of utilities for checking
remote node accessibility
Expand Down

0 comments on commit 80d954d

Please sign in to comment.