Skip to content

Commit

Permalink
fix filepath
Browse files Browse the repository at this point in the history
  • Loading branch information
kitta65 committed Jan 27, 2024
1 parent 4da013e commit c79057b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion client/src/test/suite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ SELECT * FROM \`${util.project}.bq_extension_vscode_test_asia.v\`;`
await vscode.commands.executeCommand("bqExtensionVSCode.clearCache");
// sqlite file name is defined in other file
execSync(
`sqlite3 ${process.env.HOME}/.bq_extension_vscode/*.sqlite < initialize.sql`
`sqlite3 ${process.env.HOME}/.bq_extension_vscode/*.sqlite < ${path.resolve(
__dirname,
"initialize.sql"
)}`
);
await util.deleteTextDocument("cache.bq");
console.log("Finish initializing the extension");
Expand Down

0 comments on commit c79057b

Please sign in to comment.