18F / imls-pi-stack

Other
7 stars 0 forks source link

Broken Link #41

Open its-a-lisa-at-work opened 2 years ago

its-a-lisa-at-work commented 2 years ago

I followed the instructions provided in the wiki to understand what was "under the hood" and once I reached the part under Installing Stuff (Part 2) and it instructed folks to do the following bash <(curl -s -L https://git.io/J8gOb) I then navigated to the URL and was brought to https://raw.githubusercontent.com/18F/imls-pi-stack/main/imls-ppa/imls-ppa.shim and from there I tried to look in the repositories and it directed to https://raw.githubusercontent.com/18F/imls-pi-stack/main/imls-ppa but that presented a 404: Not Found

cantsin commented 2 years ago

:wave: the shim url is correct, but where are you getting the second url? The second url is not really meant to be reachable, its set as a variable in the bash script, for instance:

PPA_REPOSITORY="https://raw.githubusercontent.com/18F/imls-pi-stack/main/imls-ppa"

But that's only so that we can do stuff like curl -s --compressed "${PPA_REPOSITORY}/KEY.gpg" | sudo apt-key add -, etc.

Let me know if this is unclear, we're always happy to write further documentation as needed.