Skip to content
This repository has been archived by the owner on Sep 30, 2023. It is now read-only.

Commit

Permalink
style: отформатировал ChangeModukeCommandOptionsParser
Browse files Browse the repository at this point in the history
  • Loading branch information
ArXa1L committed Mar 18, 2023
1 parent a2e28c2 commit 5b906c7
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ public override ChangeModuleCommandOptions Parse(string[] args)
var extraArgs = parser.Parse(args.Skip(1));
if (extraArgs.Count < 3)
{
throw new BadArgumentException("Too few arguments. \n" +
"Using: cm module <add|change> module_name module_fetch_url " +
"[-p|--pushurl=module_push_url] [--package=package_name]");
throw new BadArgumentException(
"Too few arguments. \n" +
"Using: cm module <add|change> module_name module_fetch_url " +
"[-p|--pushurl=module_push_url] [--package=package_name]");
}

var moduleName = extraArgs[1];
Expand Down

0 comments on commit 5b906c7

Please sign in to comment.