npm run lint-fix & npm run format

This commit is contained in:
Sergey Vilgelm 2021-02-15 11:54:01 -06:00
parent 397d3581a5
commit 0b80e46c53
No known key found for this signature in database
GPG key ID: 08D0E2FF778887E6
3 changed files with 3 additions and 3 deletions

View file

@ -49238,7 +49238,7 @@ function installLint(versionConfig) {
} }
else { else {
// We want to always overwrite files if the local cache already has them // 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); extractedDir = yield tc.extractTar(archivePath, process.env.HOME, args);
} }
const urlParts = assetURL.split(`/`); const urlParts = assetURL.split(`/`);

2
dist/run/index.js vendored
View file

@ -49248,7 +49248,7 @@ function installLint(versionConfig) {
} }
else { else {
// We want to always overwrite files if the local cache already has them // 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); extractedDir = yield tc.extractTar(archivePath, process.env.HOME, args);
} }
const urlParts = assetURL.split(`/`); const urlParts = assetURL.split(`/`);

View file

@ -46,7 +46,7 @@ export async function installLint(versionConfig: VersionConfig): Promise<string>
repl = /\.zip$/ repl = /\.zip$/
} else { } else {
// We want to always overwrite files if the local cache already has them // 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) extractedDir = await tc.extractTar(archivePath, process.env.HOME, args)
} }