Fix a link in deployment-methods.md

The link to the scp deploy script was broken - it appears someone
changed the link text and did not update the matching link text in the
markdown footer.

Because the script is really simple, and the script originally linked
includes some unnecessary scss commands, let's just inline the script.
This commit is contained in:
Mike Kasberg 2016-08-14 12:36:19 -06:00 committed by Mike Kasberg
parent 9f8876a332
commit e080c7f1ce
1 changed files with 4 additions and 5 deletions

View File

@ -98,13 +98,12 @@ Another way to deploy your Jekyll site is to use [Rake](https://github.com/ruby/
### scp
Once youve generated the `_site` directory, you can easily scp it using a
`tasks/deploy` shell script similar to [this deploy script][]. Youd obviously
need to change the values to reflect your sites details. There is even [a
matching TextMate command][] that will help you run this script.
`tasks/deploy` shell script similar to this:
[this deploy script here]: https://github.com/henrik/henrik.nyh.se/blob/master/script/deploy
#!/bin/bash
scp -r _site/* user@server:/home/user/public_html
[a matching TextMate command]: https://gist.github.com/henrik/214959
### rsync