mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-27 21:43:38 +00:00
fix: output files in download path
This commit is contained in:
parent
135469c3f3
commit
eb0d7e6261
2 changed files with 0 additions and 2 deletions
1
dist/index.js
vendored
1
dist/index.js
vendored
|
|
@ -39,7 +39,6 @@ async function downloadCLI (url) {
|
||||||
const pathToCLIZip = await tc.downloadTool(url);
|
const pathToCLIZip = await tc.downloadTool(url);
|
||||||
|
|
||||||
core.info(`Terraform CLI Download Path is ${pathToCLIZip}`)
|
core.info(`Terraform CLI Download Path is ${pathToCLIZip}`)
|
||||||
const files = await readdir(path);
|
|
||||||
try {
|
try {
|
||||||
const files = await fs.readdir(pathToCLIZip);
|
const files = await fs.readdir(pathToCLIZip);
|
||||||
for (const file of files)
|
for (const file of files)
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,6 @@ async function downloadCLI (url) {
|
||||||
const pathToCLIZip = await tc.downloadTool(url);
|
const pathToCLIZip = await tc.downloadTool(url);
|
||||||
|
|
||||||
core.info(`Terraform CLI Download Path is ${pathToCLIZip}`)
|
core.info(`Terraform CLI Download Path is ${pathToCLIZip}`)
|
||||||
const files = await readdir(path);
|
|
||||||
try {
|
try {
|
||||||
const files = await fs.readdir(pathToCLIZip);
|
const files = await fs.readdir(pathToCLIZip);
|
||||||
for (const file of files)
|
for (const file of files)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue