Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit 5b43144

Browse files
steurerFlorian Steurer
andauthored
fix: use path.comine instead of string concat (#819)
Co-authored-by: Florian Steurer <steurer@codeunity.de>
1 parent ba8f68f commit 5b43144

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ArmTemplates/Commands/Executors/CreatorExecutor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ public async Task ExecuteGenerationBasedOnConfiguration()
228228
this.creatorParameters.FileNames,
229229
this.creatorParameters.ApimServiceName);
230230

231-
FileWriter.WriteJSONToFile(masterTemplate, string.Concat(this.creatorParameters.OutputLocation, this.creatorParameters.FileNames.LinkedMaster));
231+
FileWriter.WriteJSONToFile(masterTemplate, Path.Combine(this.creatorParameters.OutputLocation, this.creatorParameters.FileNames.LinkedMaster));
232232
}
233233

234234
foreach (var apiTemplate in apiTemplates)

0 commit comments

Comments
 (0)