Skip to content
This repository has been archived by the owner on Jun 17, 2019. It is now read-only.

Commit

Permalink
Fixed missing string interpolation operator causing diagnostically ir…
Browse files Browse the repository at this point in the history
…relevant error messages when invalid scripts were generated
  • Loading branch information
DanielMannInCycle committed Mar 7, 2016
1 parent d60ac06 commit 6748d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RMWorkflowMigrator.Generator.PowerShell/FileSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void WriteAllText(string path, string contents)
if (errors.Any())
{
throw new ScriptGeneratorException(
"The script that was generated at path {path} contains syntax errors. This is likely an application bug.",
$"The script that was generated at path {path} contains syntax errors. This is likely an application bug.",
errors.ToDictionary(error => error.Token));
}
}
Expand Down

0 comments on commit 6748d8f

Please sign in to comment.