makedeb / makedeb-docs

Documentation for makedeb, the MPR, and other related projects
https://docs.makedeb.org
Other
3 stars 8 forks source link

Setting up repo: curl -q? #57

Open kthy opened 1 year ago

kthy commented 1 year ago

On https://docs.makedeb.org/prebuilt-mpr/getting-started/#setting-up-the-repository there is a command to install the GPG keyring:

curl -q 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' | gpg --dearmor | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null

The -q option to curl is equivalent to the long option --disable:

-q, --disable If used as the first parameter on the command line, the curlrc config file will not be read and used. See the -K, --config for details on the default config file search path.

I have the feeling you probably meant to use -s for --silent?