Skip to content

Commit 918be1c

Browse files
Fix data directory creation by uncommenting mkdirSync in Codebase class
1 parent b9a805f commit 918be1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ingestion/src/process/prepare/codebase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class Codebase {
4545

4646
/* Handle data directory */
4747
if (removeExisting && existsSync(this._dataDirPath)) rmSync(this._dataDirPath, { recursive: true })
48-
// mkdirSync(this._dataDirPath)
48+
mkdirSync(this._dataDirPath)
4949
}
5050

5151
private prepareFilesMetadata() {

0 commit comments

Comments
 (0)