Skip to content

Commit

Permalink
Merge pull request #45 from JoviDeCroock/patch-1
Browse files Browse the repository at this point in the history
Fix Github Action breaking
  • Loading branch information
Integralist authored Mar 8, 2024
2 parents 02b5a99 + 6735d34 commit 6cad1de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
const core = require('@actions/core');
const exec = require('@actions/exec');

const checkCLI = require('../util/cli');
const checkCLI = require('../util/bin');

const verbose = core.getBooleanInput('verbose');

checkCLI().then(() => {
checkCLI('fastly', 'version').then(() => {
let params = ['compute', 'build', '--non-interactive'];
if (verbose) params.push('--verbose');

Expand Down

0 comments on commit 6cad1de

Please sign in to comment.