-
Notifications
You must be signed in to change notification settings - Fork 297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update lite node tutorial #2312
Update lite node tutorial #2312
Conversation
wget https://go.dev/dl/go1.21.1.linux-amd64.tar.gz | ||
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.21.1.linux-amd64.tar.gz | ||
wget https://go.dev/dl/go1.21.7.linux-amd64.tar.gz | ||
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.21.7.linux-amd64.tar.gz | ||
echo 'export PATH=$PATH:/usr/local/go/bin' >> ~/.bashrc && source ~/.bashrc |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For a while, when I had more time, do a global replace whenever there was a new lotus release, or a go update Should we (outside of github), set up some kind of alert to keep us doing this...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a workflow over in IPFS Docs that does this. Might be as easy as copying-and-pasting into this repo: https://github.com/ipfs/ipfs-docs/blob/main/.github/workflows/update-on-new-ipfs-tag.yml
Look, I've no idea why I'm still contributing to Filecoin Docs -- I just can't let things go. Anyway, here we are. This PR: - Splits getting the latest Lotus version and checking out to that tag into two different steps, for clarity. - Generally fixes grammar and copy issues throughout the page. - Fixes a couple of funky formatting issues.
Clarifies git checkout steps. Cleans up grammar and formatting.
This PR updates the lite-node tutorial fixing multiple issues.