mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
320ebe2d34
x-ref: https://github.com/vercel/next.js/actions/runs/4599615812/jobs/8125278036 x-ref: https://github.com/vercel/next.js/actions/runs/4598323624/jobs/8124618075?pr=47365 x-ref: https://github.com/vercel/next.js/actions/runs/4598323624/jobs/8124612692?pr=47365
7 lines
209 B
Bash
Executable File
7 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# retry setting up Node.js version 5 times waiting 15 seconds between
|
|
for i in 1 2 3 4 5;
|
|
do curl -s https://install-node.vercel.app/v${NODE_VERSION} | FORCE=1 bash && break || sleep 15;
|
|
done
|