Skip to content

Commit

Permalink
Bring back missing dependencies
Browse files Browse the repository at this point in the history
They were forgotten in the AddOn auto client refactorization
  • Loading branch information
dgdavid committed Aug 30, 2018
1 parent 94171a3 commit b55c5c5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/lib/add-on/clients/add-on_auto.rb
Expand Up @@ -3,6 +3,10 @@

Yast.import "AddOnProduct"
Yast.import "AutoinstSoftware"
Yast.import "Installation"
Yast.import "Label"
Yast.import "PackageCallbacks"
Yast.import "PackageLock"
Yast.import "Progress"

module Yast
Expand All @@ -12,9 +16,9 @@ def run

Yast.include self, "add-on/add-on-workflow.rb"

progress_orig = Yast::Progress.set(false)
progress_orig = Progress.set(false)
ret = super
Yast::Progress.set(progress_orig)
Progress.set(progress_orig)

ret
end
Expand Down

0 comments on commit b55c5c5

Please sign in to comment.