Skip to content

Commit

Permalink
addressed code review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
llali committed Apr 14, 2017
1 parent e575ef1 commit 07e2364
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -551,10 +551,10 @@ Task("SRGen")
System.IO.File.Delete(outputCs);
}
if(!System.IO.Directory.Exists(inputXliff))
{
System.IO.Directory.CreateDirectory(inputXliff);
}
if (!System.IO.Directory.Exists(inputXliff))
{
System.IO.Directory.CreateDirectory(inputXliff);
}
// Run SRGen
var dotnetArgs = string.Format("{0} -or \"{1}\" -oc \"{2}\" -ns \"{3}\" -an \"{4}\" -cn SR -l CS -dnx \"{5}\"",
Expand Down

0 comments on commit 07e2364

Please sign in to comment.