Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Fixes issue #2087 (#2129)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashniu123 authored and ramya-rao-a committed Nov 28, 2018
1 parent eb60907 commit 3f20049
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/goGetPackage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import vscode = require('vscode');
import cp = require('child_process');
import { getImportPath, getCurrentGoPath, getBinPath } from './util';
import { outputChannel } from './goStatus';
import { buildCode } from './goBuild';

export function goGetPackage() {
const editor = vscode.window.activeTextEditor;
Expand All @@ -29,7 +30,7 @@ export function goGetPackage() {
outputChannel.show();
outputChannel.clear();
outputChannel.appendLine(stderr);

buildCode();
return;
}

Expand Down

0 comments on commit 3f20049

Please sign in to comment.