mirror of
https://github.com/golangci/golangci-lint-action.git
synced 2025-12-17 07:58:27 +00:00
npm run lint-fix & npm run format
This commit is contained in:
parent
397d3581a5
commit
0b80e46c53
3 changed files with 3 additions and 3 deletions
2
dist/post_run/index.js
vendored
2
dist/post_run/index.js
vendored
|
|
@ -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(`/`);
|
||||
|
|
|
|||
2
dist/run/index.js
vendored
2
dist/run/index.js
vendored
|
|
@ -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(`/`);
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ export async function installLint(versionConfig: VersionConfig): Promise<string>
|
|||
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)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue