Skip to content

Commit

Permalink
Merge pull request #2 from EddPorter/master
Browse files Browse the repository at this point in the history
File creation logic fix
  • Loading branch information
dontangg committed Jul 12, 2011
2 parents faa69c6 + b0583a7 commit b3b7aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Nocco/Nocco.cs
Expand Up @@ -203,7 +203,7 @@ class Nocco {
var dest = Path.Combine("docs", string.Join(Path.DirectorySeparatorChar.ToString(), dirs)).ToLower();
Directory.CreateDirectory(dest);

return Path.Combine(dest, Path.ChangeExtension(filepath, "html").ToLower());
return Path.Combine("docs", Path.ChangeExtension(filepath, "html").ToLower());
}

// Find all the files that match the pattern(s) passed in as arguments and
Expand Down

0 comments on commit b3b7aec

Please sign in to comment.