diff options
author | Julian <62412964+julianadler@users.noreply.github.com> | 2022-11-07 21:46:48 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-07 09:46:48 +0100 |
commit | 4e2317c757674af8264bbcc4edd79b2d42f6d781 (patch) | |
tree | 953e7f1e973b50243e066fbaade1cae277e94528 /plugins/lol | |
parent | 4806f755694d160f20e3fb8ae0a1d009d56d966b (diff) | |
download | zsh-4e2317c757674af8264bbcc4edd79b2d42f6d781.tar.gz zsh-4e2317c757674af8264bbcc4edd79b2d42f6d781.tar.bz2 zsh-4e2317c757674af8264bbcc4edd79b2d42f6d781.zip |
fix(lol): use https for `yolo` calls (#11320)
Diffstat (limited to 'plugins/lol')
-rw-r--r-- | plugins/lol/README.md | 4 | ||||
-rw-r--r-- | plugins/lol/lol.plugin.zsh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/lol/README.md b/plugins/lol/README.md index ea6b0c3b8..b45513b35 100644 --- a/plugins/lol/README.md +++ b/plugins/lol/README.md @@ -49,7 +49,7 @@ plugins=(... lol) | `violenz` | `git rebase` | | `visible` | `echo` | | `wtf` | `dmesg` | -| `yolo` | `git commit -m "$(curl -s http://whatthecommit.com/index.txt)"` | +| `yolo` | `git commit -m "$(curl -s https://whatthecommit.com/index.txt)"` | ## Usage Examples @@ -66,6 +66,6 @@ nowai u=r,go= some.file # ssh root@catserver.org pwned root@catserver.org -# git commit -m "$(curl -s http://whatthecommit.com/index.txt)" +# git commit -m "$(curl -s https://whatthecommit.com/index.txt)" yolo ``` diff --git a/plugins/lol/lol.plugin.zsh b/plugins/lol/lol.plugin.zsh index 3c30259a1..585f96e4f 100644 --- a/plugins/lol/lol.plugin.zsh +++ b/plugins/lol/lol.plugin.zsh @@ -45,7 +45,7 @@ alias bringz='git pull' alias chicken='git add' alias oanward='git commit -m' alias ooanward='git commit -am' -alias yolo='git commit -m "$(curl -s http://whatthecommit.com/index.txt)"' +alias yolo='git commit -m "$(curl -s https://whatthecommit.com/index.txt)"' alias letcat='git checkout' alias violenz='git rebase' |