diff options
author | pancho horrillo | 2022-01-11 23:15:40 +0100 |
---|---|---|
committer | pancho horrillo | 2022-01-11 23:15:40 +0100 |
commit | d1d7c38ebe5c46addcadc57a929d76ea6073598a (patch) | |
tree | ad21088f39e320685a45ac8adb50759910e38260 /PKGBUILD | |
parent | d7b3ff78efdce4fccbfcbe757a54ab7394bad295 (diff) | |
download | aur-d1d7c38ebe5c46addcadc57a929d76ea6073598a.tar.gz |
Communicate with GitHub over https
Unauthenticated access is about to be deprecated¹.
Thanks a bunch to @deuill for pointing this out to me!
[1]: https://github.blog/2021-09-01-improving-git-protocol-security-github/
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -60,7 +60,7 @@ if [[ $CLI == YES ]]; then else pkgname=emacs28-git fi -pkgver=28.0.90.151068 +pkgver=28.0.91.151127 pkgrel=1 pkgdesc='emacs-28 release branch' arch=(x86_64) @@ -76,7 +76,7 @@ options=(!strip) install=emacs28-git.install # Savannah may fail, use GitHub’s mirror instead #source=($pkgname::git://git.savannah.gnu.org/emacs.git#branch=emacs-28) -source=($pkgname::git://github.com/emacs-mirror/emacs.git#branch=emacs-28) +source=($pkgname::git+https://github.com/emacs-mirror/emacs.git#branch=emacs-28) b2sums=(SKIP) ################################################################################ |