Skip to content

Commit

Permalink
merge: PR #75 from bug/59-get-started-markdown-issue-staging
Browse files Browse the repository at this point in the history
59 - Get started markdown issue
  • Loading branch information
0xmemorygrinder authored Oct 9, 2024
2 parents 0a3026c + 489e6a3 commit 2612da4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions vscode/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
out/**
node_modules/**
src/**
!src/walkthroughs/**
.gitignore
.yarnrc
webpack.config.js
Expand Down
2 changes: 1 addition & 1 deletion vscode/src/walkthrough-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function registerWalkthroughPanel(context: vscode.ExtensionContext) {

// Command to check if forge is installed
context.subscriptions.push(vscode.commands.registerCommand('osmium.checkIfForgeInstalled', () => {
exec('forge --version', (err, stdout, stderr) => {
exec('forge --version', (err, stdout) => {
if (err) {
vscode.window.showErrorMessage('Foundry/Forge is not installed. Please install it.');
vscode.commands.executeCommand('setContext', 'osmium.forgeInstalled', false);
Expand Down

0 comments on commit 2612da4

Please sign in to comment.