2024-05-27 20:45:14 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
### Disconnect from CloudFlare WARP (if connected)
|
|
|
|
if command -v warp-cli > /dev/null; then
|
2024-05-27 20:50:11 -07:00
|
|
|
warp-cli disconnect && gum log -sl info 'CloudFlare WARP temporarily disconnected while Volta installs Node / Yarn'
|
2024-05-27 20:45:14 -07:00
|
|
|
fi
|
|
|
|
|
|
|
|
### Download and run the kickstart script
|
|
|
|
bash <(curl -sSL https://install.doctor/start)
|