autoenv icon indicating copy to clipboard operation
autoenv copied to clipboard

README automated installation code bug

Open crowned opened this issue 6 months ago • 2 comments

In the README, the automated installation code with curl and wget should be in two separate code windows, otherwise if someone copies and pastes the automated intallation code into terminal, it will try to run both commands.

crowned avatar May 30 '25 12:05 crowned

This should be in two separate code windows, i believe:

with cURL

curl -#fLo- 'https://raw.githubusercontent.com/hyperupcall/autoenv/main/scripts/install.sh' | sh

with wget

wget --show-progress -o /dev/null -O- 'https://raw.githubusercontent.com/hyperupcall/autoenv/main/scripts/install.sh' | sh

crowned avatar May 30 '25 12:05 crowned

That is true, but this is also done several times in the "manual installation" section. Maybe I can update the commends above to make more clear that only one of the commands need to run,.

hyperupcall avatar May 31 '25 01:05 hyperupcall