Skip to content

Commit

Permalink
Merge pull request #299 from yast/fix-nil-typo-on-sle12
Browse files Browse the repository at this point in the history
Fix nil typo on sle12
  • Loading branch information
imobachgs committed Jul 20, 2015
2 parents 3259350 + b22af87 commit 23ec35e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions package/yast2-installation.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Jul 20 17:15:53 UTC 2015 - igonzalezsosa@suse.com

- Fix a typo in inst_finish client (bsc#938790)
- 3.1.116.4

-------------------------------------------------------------------
Thu Apr 16 13:02:23 CEST 2015 - locilka@suse.com

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-installation.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-installation
Version: 3.1.116.3
Version: 3.1.116.4
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
2 changes: 1 addition & 1 deletion src/clients/inst_finish.rb
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def main
)
next nil
end
if !info["when"].nil &&
if !info["when"].nil? &&
!Builtins.contains(Ops.get_list(info, "when", []), @run_type) &&
# special hack for autoupgrade - should be as regular upgrade as possible, scripts are the only exception
!(Mode.autoupgrade &&
Expand Down

0 comments on commit 23ec35e

Please sign in to comment.