Skip to content

Commit

Permalink
Fix fetch commands help content loading
Browse files Browse the repository at this point in the history
  • Loading branch information
keizer619 committed Dec 9, 2019
1 parent efbd9c2 commit a7cd019
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public FetchCommand(PrintStream printStream) {

public void execute() {
if (helpFlag) {
printUsageInfo("dist-" + BallerinaCliCommands.FETCH);
printUsageInfo(BallerinaCliCommands.FETCH);
return;
}

Expand All @@ -65,7 +65,7 @@ public void execute() {

@Override
public String getName() {
return BallerinaCliCommands.PULL;
return BallerinaCliCommands.FETCH;
}

@Override
Expand Down

0 comments on commit a7cd019

Please sign in to comment.