Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
coenm committed Sep 8, 2024
1 parent 61de2f5 commit 29db6bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/RepoM.ActionMenu.CodeGen/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ public static async Task Main()
var compile = new CompileRepoM();
var rootFolder = ThisProjectAssembly.Info.GetSolutionDirectory();
var srcFolder = Path.Combine(rootFolder, "src");
var docsFolderSource = Path.Combine(rootFolder, "docs_new", "mdsource");
var docsFolder = Path.Combine(rootFolder, "docs_new");
var docsFolder = Path.Combine(rootFolder, "docs");
var docsFolderSource = Path.Combine(docsFolder, "mdsource");

FileSystemHelper.CheckDirectory(srcFolder);
FileSystemHelper.CheckDirectory(docsFolder);
Expand Down Expand Up @@ -331,7 +331,7 @@ public static async Task<Template> LoadTemplateAsync(string path)

private static async Task<Dictionary<string, string>> LoadFilesAsync(string root)
{
var path = Path.Combine(root, "docs", "snippets");
var path = Path.Combine(root, "docs_old", "snippets");
var fileNames = Directory.GetFiles(path);

var result = new Dictionary<string, string>(fileNames.Length);
Expand Down

0 comments on commit 29db6bd

Please sign in to comment.