this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'main' of github.com:Chickensoupwithrice/unison-automerge

+2 -1
+2 -1
index.ts
··· 85 85 86 86 const processFile = async (fileInfo: FileInfo, destDir: string): Promise<string> => { 87 87 const destPath = path.join(destDir, fileInfo.relativePath); 88 - await mkdir(path.dirname(destPath), { recursive: true }); 88 + console.log({destPath, fileInfo}) 89 + // await mkdir(path.dirname(destPath), { recursive: true }); 89 90 // await copyFile(fileInfo.path, destPath); 90 91 return destPath; 91 92 };