mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2025-07-12 14:33:27 +00:00
Fix typo
This commit is contained in:
parent
0cbdd890c3
commit
43f2a98c17
|
@ -45,8 +45,8 @@ internal class Program
|
||||||
{
|
{
|
||||||
if (!VerifyTopOptions())
|
if (!VerifyTopOptions())
|
||||||
{
|
{
|
||||||
if (!CoreExists()) config.Error.WriteLine($"Cant find core dll at: {coreDll.Value()}");
|
if (!CoreExists()) config.Error.WriteLine($"Can't find core dll at: {coreDll.Value()}");
|
||||||
if (!CertExists()) config.Error.WriteLine($"Cant find certificate at: {cert.Value()}");
|
if (!CertExists()) config.Error.WriteLine($"Can't find certificate at: {cert.Value()}");
|
||||||
|
|
||||||
config.ShowHelp();
|
config.ShowHelp();
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -173,7 +173,6 @@ internal class Program
|
||||||
return 0;
|
return 0;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
app.Command("user", config =>
|
app.Command("user", config =>
|
||||||
{
|
{
|
||||||
CommandArgument name = config.Argument("Name", "your name");
|
CommandArgument name = config.Argument("Name", "your name");
|
||||||
|
@ -188,11 +187,11 @@ internal class Program
|
||||||
{
|
{
|
||||||
if (!CoreExists())
|
if (!CoreExists())
|
||||||
{
|
{
|
||||||
config.Error.WriteLine($"Cant find core dll at: {coreDll.Value()}");
|
config.Error.WriteLine($"Can't find core dll at: {coreDll.Value()}");
|
||||||
}
|
}
|
||||||
if (!CertExists())
|
if (!CertExists())
|
||||||
{
|
{
|
||||||
config.Error.WriteLine($"Cant find certificate at: {cert.Value()}");
|
config.Error.WriteLine($"Can't find certificate at: {cert.Value()}");
|
||||||
}
|
}
|
||||||
|
|
||||||
config.ShowHelp();
|
config.ShowHelp();
|
||||||
|
@ -246,11 +245,11 @@ internal class Program
|
||||||
{
|
{
|
||||||
if (!CoreExists())
|
if (!CoreExists())
|
||||||
{
|
{
|
||||||
config.Error.WriteLine($"Cant find core dll at: {coreDll.Value()}");
|
config.Error.WriteLine($"Can't find core dll at: {coreDll.Value()}");
|
||||||
}
|
}
|
||||||
if (!CertExists())
|
if (!CertExists())
|
||||||
{
|
{
|
||||||
config.Error.WriteLine($"Cant find certificate at: {cert.Value()}");
|
config.Error.WriteLine($"Can't find certificate at: {cert.Value()}");
|
||||||
}
|
}
|
||||||
|
|
||||||
config.ShowHelp();
|
config.ShowHelp();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user