Hello, I was following the [guide to install Stripe CLI on Fedora](https://docs.stripe.com/stripe-cli?install-method=yum) and noticed that the command does not use Sudo. ```bash echo -e "[Stripe]\nname=stripe\nbaseurl=https://packages.stripe.dev/stripe-cli-rpm-local/\nenabled=1\ngpgcheck=0" >> /etc/yum.repos.d/stripe.repo ``` Would it be better to use the following? ```bash echo -e "[Stripe]\nname=stripe\nbaseurl=https://packages.stripe.dev/stripe-cli-rpm-local/\nenabled=1\ngpgcheck=1" | sudo tee /etc/yum.repos.d/stripe.repo > /dev/null ``` Thanks