(String name, HashMap<String, DebianPackage> depends, HashSet<String> ignored)
| 13 | static String release = "bullseye"; |
| 14 | |
| 15 | public static void add(String name, HashMap<String, DebianPackage> depends, HashSet<String> ignored) { |
| 16 | DebianPackages.getPackage(name).getDepends(ignored, depends); |
| 17 | depends.put(name, DebianPackages.getPackage(name)); |
| 18 | } |
| 19 | public static void main(String[] args) { |
| 20 | Settings.fileCachePath = new File("c:\\debianCache"); |
| 21 | Settings.outputDir = new File("c:\\debianCache\\out"); |
no test coverage detected