Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Temporarily remove installation so it can be reviewed
  • Loading branch information
Danny McCormick committed Jun 20, 2019
1 parent cef575c commit 263a218
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 268 deletions.
134 changes: 0 additions & 134 deletions lib/installer.js

This file was deleted.

4 changes: 2 additions & 2 deletions lib/setup-go.js
Expand Up @@ -16,7 +16,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
};
Object.defineProperty(exports, "__esModule", { value: true });
const core = __importStar(require("@actions/core"));
const installer = __importStar(require("./installer"));
// import * as installer from './installer';
function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
Expand All @@ -26,7 +26,7 @@ function run() {
//
const version = core.getInput('version');
if (version) {
yield installer.getGo(version);
// await installer.getGo(version);
}
// TODO: setup proxy from runner proxy config
// TODO: problem matchers registered
Expand Down
130 changes: 0 additions & 130 deletions src/installer.ts

This file was deleted.

4 changes: 2 additions & 2 deletions src/setup-go.ts
@@ -1,5 +1,5 @@
import * as core from '@actions/core';
import * as installer from './installer';
// import * as installer from './installer';

async function run() {
try {
Expand All @@ -9,7 +9,7 @@ async function run() {
//
const version = core.getInput('version');
if (version) {
await installer.getGo(version);
// await installer.getGo(version);
}

// TODO: setup proxy from runner proxy config
Expand Down

0 comments on commit 263a218

Please sign in to comment.