Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
#10: Resolve line ending differences between development and build en…
Browse files Browse the repository at this point in the history
…vironments
  • Loading branch information
laingsimon committed Sep 30, 2021
1 parent 865a8c4 commit 5680068
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vcdb.MySql/SchemaBuilding/MySqlProcedureRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ private static string BuildCreateProcedureStatement(SqlRoutine routine, IEnumera
? $"({string.Join(", ", parameters.Select(BuildParameterStatement))})\r\n"
: "";

return @$"CREATE PROCEDURE `{routine.ROUTINE_NAME}`
{parametersClause}{BuildCommentClause(comment)}{routine.ROUTINE_DEFINITION}";
return $"CREATE PROCEDURE `{routine.ROUTINE_NAME}`\r\n{parametersClause}{BuildCommentClause(comment)}{routine.ROUTINE_DEFINITION}";
}

private static string BuildCommentClause(string comment)
Expand Down

0 comments on commit 5680068

Please sign in to comment.