Skip to content

Commit

Permalink
Fix problem with redirected download from github
Browse files Browse the repository at this point in the history
  • Loading branch information
tovrstra committed Jun 11, 2015
1 parent 64036d6 commit 3a635c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/user_download_and_install_linux.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Choose a suitable directory, e.g. ``~/build``, download and unpack the archive
mkdir -p ~/build
cd ~/build
curl -O https://github.com/theochem/horton/releases/download/2.0.0/horton-2.0.0.tar.gz
curl -kLO https://github.com/theochem/horton/releases/download/2.0.0/horton-2.0.0.tar.gz
tar -xvzf horton-2.0.0.tar.gz
cd horton-2.0.0
Expand Down
2 changes: 1 addition & 1 deletion doc/user_download_and_install_mac.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Choose a suitable directory, e.g. ``~/build``, download and unpack the archive:
mkdir -p ~/build
cd ~/build
curl -O https://github.com/theochem/horton/releases/download/2.0.0/horton-2.0.0.tar.gz
curl -kLO https://github.com/theochem/horton/releases/download/2.0.0/horton-2.0.0.tar.gz
tar -xvzf horton-2.0.0.tar.gz
cd horton-2.0.0
Expand Down
4 changes: 2 additions & 2 deletions updateversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
('horton/__init__.py', '^__version__ = \'(...+)\'$'),
('doc/conf.py', ' release = \'(...+)-nogit\'$'),
('doc/user_download_and_install_linux.rst', '^ https://github.com/theochem/horton/releases/download/(...+)/horton-(...+).tar.gz$'),
('doc/user_download_and_install_linux.rst', '^ curl -O https://github.com/theochem/horton/releases/download/(...+)/horton-(...+).tar.gz$'),
('doc/user_download_and_install_linux.rst', '^ curl -kLO https://github.com/theochem/horton/releases/download/(...+)/horton-(...+).tar.gz$'),
('doc/user_download_and_install_linux.rst', '^ tar -xvzf horton-(...+).tar.gz$'),
('doc/user_download_and_install_linux.rst', '^ cd horton-(...+)$'),
('doc/user_download_and_install_mac.rst', '^ https://github.com/theochem/horton/releases/download/(...+)/horton-(...+).tar.gz$'),
('doc/user_download_and_install_mac.rst', '^ curl -O https://github.com/theochem/horton/releases/download/(...+)/horton-(...+).tar.gz$'),
('doc/user_download_and_install_mac.rst', '^ curl -kLO https://github.com/theochem/horton/releases/download/(...+)/horton-(...+).tar.gz$'),
('doc/user_download_and_install_mac.rst', '^ tar -xvzf horton-(...+).tar.gz$'),
('doc/user_download_and_install_mac.rst', '^ cd horton-(...+)$'),
]
Expand Down

0 comments on commit 3a635c8

Please sign in to comment.