Skip to content

Commit 0f2e3d8

Browse files
Add missing await
Co-authored by: Marc Jaramillo mnj.webdeveloper@gmail.com Co-authored by: Musab Guma'a mgsium@github.com
1 parent 0ae9d58 commit 0f2e3d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extensions/ql-vscode/src/databaseFetcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ async function readAndUnzip(
268268
step: 9,
269269
message: `Unzipping into ${path.basename(unzipPath)}`
270270
});
271-
if(cli.cliConstraints.supportsDatabaseUnbundle()) {
271+
if(await cli.cliConstraints.supportsDatabaseUnbundle()) {
272272
// Use the `database unbundle` command if the installed cli version supports it
273273
await cli.databaseUnbundle(zipFile, unzipPath);
274274
} else {

0 commit comments

Comments
 (0)