crossplane / docs

Repo for Crossplane documentation.
https://docs.crossplane.io
Other
46 stars 105 forks source link

bug: Crossplane CLI installation script does not work #779

Open AnaisUrlichs opened 1 month ago

AnaisUrlichs commented 1 month ago

URL

https://docs.crossplane.io/latest/cli/

Coomand:

curl -sL "https://raw.githubusercontent.com/crossplane/crossplane/master/install.sh" | sh

What's Wrong?

"Failed to download Crossplane CLI. Please make sure version current exists on channel stable."

jbw976 commented 1 month ago

Heya @AnaisUrlichs 👋 - thanks for taking the time to report this issue! This certainly isn't expected 😅

I just tried to reproduce this issue myself now, but it worked successfully for me:

❯ curl -sL "https://raw.githubusercontent.com/crossplane/crossplane/master/install.sh" | sh
crossplane CLI downloaded successfully! Run the following commands to finish installing it:

sudo mv crossplane /usr/local/bin
crossplane --help

Visit https://crossplane.io to get started. 🚀
Have a nice day! 👋

Would you be able to run this again with -x to get some more debug output? e.g.:

curl -sL "https://raw.githubusercontent.com/crossplane/crossplane/master/install.sh" | sh -x

Thanks for your efforts!