From ea413d6752483d276a8c3b94dd204857d8009ec1 Mon Sep 17 00:00:00 2001 From: Itzik Ephraim Date: Fri, 17 Feb 2017 23:25:45 +0200 Subject: [PATCH] Get oh-my-fish installer from a secure connection. Use HTTPS schema instead of cleartext HTTP. SSL certificate provided by letsencrypt.com Installed on private nginx server for redirection. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c3a4dc8..4333500 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ Oh My Fish provides core infrastructure to allow you to install packages which e You can get started right away with the default setup by running this in your terminal: ```fish -curl -L http://get.oh-my.fish | fish +curl -L https://get.oh-my.fish | fish ``` This will download the installer script and start the installation. Alternatively, you can download the installer and customize your install: ```fish -curl -L http://get.oh-my.fish > install +curl -L https://get.oh-my.fish > install fish install --path=~/.local/share/omf --config=~/.config/omf ``` @@ -38,7 +38,7 @@ $ git clone https://github.com/oh-my-fish/oh-my-fish $ cd oh-my-fish $ bin/install --offline # with a tarball -$ curl -L http://get.oh-my.fish > install +$ curl -L https://get.oh-my.fish > install $ fish install --offline=omf.tar.gz ```