Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brianignacio5 committed Aug 22, 2024
1 parent df24a51 commit 549494f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,9 @@ export async function activate(context: vscode.ExtensionContext) {
) as string;
const qemuBinPath = path.join(buildDirPath, "merged_qemu.bin");
const qemuBinExists = await pathExists(qemuBinPath);
await vscode.window.showInformationMessage(`${qemuBinPath} exists? ${qemuBinExists}`);
await vscode.window.showInformationMessage(
`${qemuBinPath} exists? ${qemuBinExists}`
);
if (qemuBinExists) {
vscode.workspace.fs.delete(vscode.Uri.file(qemuBinPath));
}
Expand Down

0 comments on commit 549494f

Please sign in to comment.