Skip to content

Commit 393bf69

Browse files
author
Ege Ozcan
committed
fix: temporary fix for error where undefined is being passed to path.join
1 parent d296091 commit 393bf69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/aws-lsp-codewhisperer/src/shared/localProjectContextController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { URI } from 'vscode-uri'
1313

1414
const fs = require('fs').promises
1515
const path = require('path')
16-
const LIBRARY_DIR = path.join(dirname(require.main!.filename), 'indexing')
16+
const LIBRARY_DIR = path.join('//TODO FIXME', 'indexing')
1717

1818
export class LocalProjectContextController {
1919
private static instance: LocalProjectContextController | undefined

0 commit comments

Comments
 (0)