Merge pull request #137 from jrobeson/add-https-to-curl-calls

Add https:// to curl calls in README and install script
This commit is contained in:
Bruno 2015-10-21 23:51:33 +11:00
commit e5d02a8e32
2 changed files with 5 additions and 5 deletions

View File

@ -18,14 +18,14 @@ Oh My Fish provides core infrastructure to allow you to install packages which e
# Install
```fish
curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish
omf help
```
Or _download_ and run it yourself:
```fish
curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install
curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install
fish install
```

View File

@ -1,9 +1,9 @@
#!/usr/bin/env fish
#
# USAGE
# #1: curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish
# #2: curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install; and fish install
# #3: env OMF_CONFIG=~/.omf curl -L github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish
# #1: curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish
# #2: curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install > install; and fish install
# #3: env OMF_CONFIG=~/.omf curl -L https://github.com/oh-my-fish/oh-my-fish/raw/master/bin/install | fish
#
# ENV
# XDG_DATA_HOME Base directory (~/.local/share)