From 005af724ea2279f4a5a3dfd1d953e6e8e4058e21 Mon Sep 17 00:00:00 2001 From: Steffen Neubauer Date: Tue, 3 Jan 2023 16:05:55 +0100 Subject: [PATCH] improvment: satisfy linter --- core/test/integ/src/plugins/exec/resolve.ts | 3 +-- plugins/terraform/commands.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/core/test/integ/src/plugins/exec/resolve.ts b/core/test/integ/src/plugins/exec/resolve.ts index 43f3ebca2bc..04c1312d3a6 100644 --- a/core/test/integ/src/plugins/exec/resolve.ts +++ b/core/test/integ/src/plugins/exec/resolve.ts @@ -1,6 +1,5 @@ import { expect } from "chai" -import execa from "execa" -import { remove, readFile } from "fs-extra" +import { readFile } from "fs-extra" import { join } from "node:path" import { getDataDir, makeTestGarden, TestGarden } from "../../../../helpers" diff --git a/plugins/terraform/commands.ts b/plugins/terraform/commands.ts index 66ec48f0deb..146c8f17992 100644 --- a/plugins/terraform/commands.ts +++ b/plugins/terraform/commands.ts @@ -44,7 +44,7 @@ function makeRootCommand(commandName: string) { // Clear the provider status cache, to avoid any user confusion const cachePath = getProviderStatusCachePath({ gardenDirPath: ctx.gardenDirPath, - pluginName: provider.name + pluginName: provider.name, }) await remove(cachePath)