Commit 1ce056e5eac8124595e442367b709387b997cda6

Thomas de Grivel 2023-02-23T22:43:55

required_by

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/lib/rbpkg/repo.rb b/lib/rbpkg/repo.rb
index 083e3c3..6af73c6 100644
--- a/lib/rbpkg/repo.rb
+++ b/lib/rbpkg/repo.rb
@@ -424,7 +424,7 @@ class Rbpkg::Repo
   def uninstall_required_by
     verbose 3, "repo(#{name}).uninstall_required_by"
     required_by.each do |req|
-      Rbpkg.Repos.repo(req).uninstall
+      Rbpkg::Repos.repo(req).uninstall
     end
   end