Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions install/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21233,6 +21233,8 @@ async function setupAsdf() {
const downloadPath = path.join(os.tmpdir(), releaseToDownload.name);
const extractPath = path.join(asdfDir, "bin");
await exec.exec("curl", [
"--retry",
"5",
"-sSL",
"-o",
downloadPath,
Expand Down
2 changes: 2 additions & 0 deletions plugin-test/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21229,6 +21229,8 @@ async function setupAsdf() {
const downloadPath = path.join(os.tmpdir(), releaseToDownload.name);
const extractPath = path.join(asdfDir, "bin");
await exec.exec("curl", [
"--retry",
"5",
"-sSL",
"-o",
downloadPath,
Expand Down
2 changes: 2 additions & 0 deletions plugins-add/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21229,6 +21229,8 @@ async function setupAsdf() {
const downloadPath = path.join(os.tmpdir(), releaseToDownload.name);
const extractPath = path.join(asdfDir, "bin");
await exec.exec("curl", [
"--retry",
"5",
"-sSL",
"-o",
downloadPath,
Expand Down
2 changes: 2 additions & 0 deletions setup/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -21224,6 +21224,8 @@ async function setupAsdf() {
const downloadPath = path.join(os.tmpdir(), releaseToDownload.name);
const extractPath = path.join(asdfDir, "bin");
await exec.exec("curl", [
"--retry",
"5",
"-sSL",
"-o",
downloadPath,
Expand Down
2 changes: 2 additions & 0 deletions src/setup/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ async function setupAsdf(): Promise<void> {
const downloadPath = path.join(os.tmpdir(), releaseToDownload.name);
const extractPath = path.join(asdfDir, "bin");
await exec.exec("curl", [
"--retry",
"5",
"-sSL",
"-o",
downloadPath,
Expand Down