Skip to content

Commit ce2f5ae

Browse files
Changed variable name
1 parent 3af0997 commit ce2f5ae

File tree

1 file changed

+3
-3
lines changed
  • aspnet-core/src/AbpCompanyName.AbpProjectName.Migrator

1 file changed

+3
-3
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Migrator/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace AbpCompanyName.AbpProjectName.Migrator
1010
public class Program
1111
{
1212
private static bool _skipConnVerification = false;
13-
private static bool _runQuietMode = false;
13+
private static bool _runInQuietMode = false;
1414

1515
public static void Main(string[] args)
1616
{
@@ -30,7 +30,7 @@ public static void Main(string[] args)
3030
migrateExecuter.Object.Run(_skipConnVerification);
3131
}
3232

33-
if (!_runQuietMode)
33+
if (!_runInQuietMode)
3434
{
3535
Console.WriteLine("Press ENTER to exit...");
3636
Console.ReadLine();
@@ -53,7 +53,7 @@ private static void ParseArgs(string[] args)
5353
_skipConnVerification = true;
5454
break;
5555
case "-q":
56-
_runQuietMode = true;
56+
_runInQuietMode = true;
5757
break;
5858
}
5959
}

0 commit comments

Comments
 (0)