Skip to content

Commit

Permalink
Merge branch '5.5.0' into 5.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
taikuukaits committed Jun 20, 2019
2 parents 9e0f30d + 99364db commit d3a6540
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ public AirgapNugetInspectorInstaller(final AirGapManager airGapManager) {
@Override
public File installExeInspector() {
Optional<File> nugetAirGapPath = airGapManager.getNugetInspectorAirGapFile();
return new File(nugetAirGapPath.get(), "nuget_dotnet");
return new File(nugetAirGapPath.get(), "nuget_classic");
}

@Override
public File installDotnetInspector() {
Optional<File> nugetAirGapPath = airGapManager.getNugetInspectorAirGapFile();
return new File(nugetAirGapPath.get(), "nuget_classic");
return new File(nugetAirGapPath.get(), "nuget_dotnet");

}
}

0 comments on commit d3a6540

Please sign in to comment.