I was going through the README and tried the Quick Start command
mentioned under the "Try before installing" section:
curl -sSL https://raw.githubusercontent.com/Vaishnav-Sabari-Girish/arduino-cli-interactive/refs/heads/main/bash_shell_script/main.sh | bash
This throws a 404 because the file is no longer at
bash_shell_script/main.sh — it's actually sitting at the root
of the repo as main.sh.
So anyone landing on the README and trying the quick start command
for the first time will hit this silently and have no idea why
it's not working. Not a great first impression for new users.
The fix is straightforward — just update the curl path to point
to the correct location:
curl -sSL https://raw.githubusercontent.com/Vaishnav-Sabari-Girish/arduino-cli-interactive/refs/heads/main/main.sh | bash
I'd like to fix this if you can assign me to it under OSCG26.
I was going through the README and tried the Quick Start command
mentioned under the "Try before installing" section:
curl -sSL https://raw.githubusercontent.com/Vaishnav-Sabari-Girish/arduino-cli-interactive/refs/heads/main/bash_shell_script/main.sh | bash
This throws a 404 because the file is no longer at
bash_shell_script/main.sh — it's actually sitting at the root
of the repo as main.sh.
So anyone landing on the README and trying the quick start command
for the first time will hit this silently and have no idea why
it's not working. Not a great first impression for new users.
The fix is straightforward — just update the curl path to point
to the correct location:
curl -sSL https://raw.githubusercontent.com/Vaishnav-Sabari-Girish/arduino-cli-interactive/refs/heads/main/main.sh | bash
I'd like to fix this if you can assign me to it under OSCG26.