File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
aspnet-core/src/AbpCompanyName.AbpProjectName.Migrator Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ namespace AbpCompanyName.AbpProjectName.Migrator
10
10
public class Program
11
11
{
12
12
private static bool _skipConnVerification = false ;
13
- private static bool _runQuietMode = false ;
13
+ private static bool _runInQuietMode = false ;
14
14
15
15
public static void Main ( string [ ] args )
16
16
{
@@ -30,7 +30,7 @@ public static void Main(string[] args)
30
30
migrateExecuter . Object . Run ( _skipConnVerification ) ;
31
31
}
32
32
33
- if ( ! _runQuietMode )
33
+ if ( ! _runInQuietMode )
34
34
{
35
35
Console . WriteLine ( "Press ENTER to exit..." ) ;
36
36
Console . ReadLine ( ) ;
@@ -53,7 +53,7 @@ private static void ParseArgs(string[] args)
53
53
_skipConnVerification = true ;
54
54
break ;
55
55
case "-q" :
56
- _runQuietMode = true ;
56
+ _runInQuietMode = true ;
57
57
break ;
58
58
}
59
59
}
You can’t perform that action at this time.
0 commit comments