Skip to content

Commit

Permalink
Merge pull request #1061 from daschult/master
Browse files Browse the repository at this point in the history
Fix generated file name
  • Loading branch information
tbombach committed May 24, 2016
2 parents 568ded9 + 9750fcb commit 1382a5e
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 1382a5e

Please sign in to comment.