Skip to content

Commit

Permalink
Fix bug with cleaning temporary data
Browse files Browse the repository at this point in the history
  • Loading branch information
andyone committed Mar 13, 2018
1 parent 842b61b commit 05bd37a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions SOURCES/webkaos-utils
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
APP="WEBKAOS Utils"

# Utility version
VER="1.4.1"
VER="1.4.2"

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

Expand Down Expand Up @@ -380,7 +380,7 @@ sigExitTrap() {
doExit() {
local ec="${1:-0}"

rm -f "${TMP_PATTERN//XXXXXXXXX/}*"
rm -f ${TMP_PATTERN//XXXXXXXXX/}*

exit "$ec"
}
Expand Down
5 changes: 4 additions & 1 deletion webkaos-utils.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Summary: Helpers for working with webkaos server
Name: webkaos-utils
Version: 1.4.1
Version: 1.4.2
Release: 0%{?dist}
Group: Applications/System
License: EKOL
Expand Down Expand Up @@ -47,6 +47,9 @@ rm -rf %{buildroot}
###############################################################################

%changelog
* Wed Mar 14 2018 Anton Novojilov <[email protected]> - 1.4.2-0
- Fixed bug with cleaning temporary data

* Tue Dec 12 2017 Anton Novojilov <[email protected]> - 1.4.1-0
- Code refactoring

Expand Down

0 comments on commit 05bd37a

Please sign in to comment.