Fix print help message will return 1

This commit is contained in:
2022-05-24 03:43:30 +00:00
committed by GitHub
parent 5ccbfecb89
commit 4d3dd16950
2 changed files with 7 additions and 1 deletions

View File

@@ -140,6 +140,9 @@ impl Main {
Command::Download => {
return self.download();
}
Command::None => {
return 0;
}
}
0
}