mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix visibility of command invoke method.
This commit is contained in:
@@ -77,10 +77,10 @@ namespace DiscImageChef.Commands
|
||||
Arity = ArgumentArity.ExactlyOne, Description = "Disc image path", Name = "image-path"
|
||||
});
|
||||
|
||||
Handler = CommandHandler.Create(GetType().GetMethod(nameof(Invoke)));
|
||||
Handler = CommandHandler.Create(typeof(AnalyzeCommand).GetMethod(nameof(Invoke)));
|
||||
}
|
||||
|
||||
int Invoke(bool verbose, bool debug, string encoding, bool filesystems, bool partitions, string imagePath)
|
||||
public static int Invoke(bool verbose, bool debug, string encoding, bool filesystems, bool partitions, string imagePath)
|
||||
{
|
||||
MainClass.PrintCopyright();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user