Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ committed Aug 13, 2024
1 parent 9ac9486 commit 4c7b703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GUI/Shared/Handlers/DabBuilder/DabBuilderHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public async System.Threading.Tasks.Task BuildDabConfigAsync(Project project)
await SaveOptionsAsync(project, optionsPath, options, userOptions);

if (!File.Exists(Path.Combine(options.ProjectPath, ".env"))
&& await VS.MessageBox.ShowConfirmAsync("Create .env file with your connection string?", "Remember to exclude from source contol!"))
&& await VS.MessageBox.ShowConfirmAsync("Create .env file with your connection string?", "Remember to exclude from source control!"))
{
File.WriteAllText(Path.Combine(options.ProjectPath, ".env"), $"dab-connection-string={dbInfo.ConnectionString}");
}
Expand Down

0 comments on commit 4c7b703

Please sign in to comment.