Skip to content

Commit

Permalink
Update WFBotCore.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyl18 committed Oct 14, 2022
1 parent 98ad0cd commit 2c3c46c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion WFBot/WFBotCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ public static async Task Main(string[] args)
}


if (!IsInDocker && !args.Any(x => x == "--wrapper") && !Debugger.IsAttached)
if (!IsInDocker && !args.Any(x => x == "--wrapper") && !Debugger.IsAttached
#if DEBUG
&& false
#endif
)
{
Migrate();
return;
Expand Down

0 comments on commit 2c3c46c

Please sign in to comment.