Skip to content

Commit

Permalink
Fix generated file name
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Schulte committed May 19, 2016
1 parent eff510f commit 9750fcb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public override async Task Generate(ServiceClient serviceClient)
StringWriter stringWriter = new StringWriter();
ResourceSchemaWriter.Write(stringWriter, resourceSchemas[resourceProvider]);

string schemaPath = Path.Combine(Settings.OutputDirectory, resourceProvider, ".json");
string schemaPath = Path.Combine(Settings.OutputDirectory, resourceProvider + ".json");
await Write(stringWriter.ToString(), schemaPath);
}
}
Expand Down

0 comments on commit 9750fcb

Please sign in to comment.