diff --git a/dist/post_run/index.js b/dist/post_run/index.js index c5de8de..77c60b0 100644 --- a/dist/post_run/index.js +++ b/dist/post_run/index.js @@ -49238,7 +49238,7 @@ function installLint(versionConfig) { } else { // We want to always overwrite files if the local cache already has them - let args = ['xz', '--overwrite']; + const args = ["xz", "--overwrite"]; extractedDir = yield tc.extractTar(archivePath, process.env.HOME, args); } const urlParts = assetURL.split(`/`); diff --git a/dist/run/index.js b/dist/run/index.js index 2b6f49d..0b70767 100644 --- a/dist/run/index.js +++ b/dist/run/index.js @@ -49248,7 +49248,7 @@ function installLint(versionConfig) { } else { // We want to always overwrite files if the local cache already has them - let args = ['xz', '--overwrite']; + const args = ["xz", "--overwrite"]; extractedDir = yield tc.extractTar(archivePath, process.env.HOME, args); } const urlParts = assetURL.split(`/`); diff --git a/src/install.ts b/src/install.ts index dad6c4d..3037e21 100644 --- a/src/install.ts +++ b/src/install.ts @@ -46,7 +46,7 @@ export async function installLint(versionConfig: VersionConfig): Promise repl = /\.zip$/ } else { // We want to always overwrite files if the local cache already has them - let args = ['xz', '--overwrite'] + const args = ["xz", "--overwrite"] extractedDir = await tc.extractTar(archivePath, process.env.HOME, args) }