Skip to content

Commit

Permalink
Actually set 🙈 the plugin install to silent since it was polluting th…
Browse files Browse the repository at this point in the history
…e output
  • Loading branch information
Yohan Belval committed Aug 9, 2021
1 parent 803d19c commit 0d34578
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion task/.taskkey
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6844a6fb-b90c-4dcd-8b1b-cf8e5742ebb2
43030089-54c6-4b5d-ad2b-db4bde951e79
8 changes: 7 additions & 1 deletion task/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ async function run() {
case 'diff':
const installUpdateHelmDiff = tl.getBoolInput('installUpdateHelmDiff');
if (installUpdateHelmDiff) {
const plugInstallResult = new helmCommand().execHelmPluginInstallCommand('diff', 'https://github.com/databus23/helm-diff', true);
const pluginOptions = { name: 'diff', url: 'https://github.com/databus23/helm-diff', autoUpdate: true, silent: true };
const plugInstallResult = new helmCommand().execHelmPluginInstallCommand(
pluginOptions.name,
pluginOptions.url,
pluginOptions.autoUpdate,
pluginOptions.silent
);
if (
plugInstallResult.code != tl.TaskResult.Succeeded ||
!!plugInstallResult.error ||
Expand Down

0 comments on commit 0d34578

Please sign in to comment.