From e080c7f1ce26923aa19d8b93adaa0b94a3ddf151 Mon Sep 17 00:00:00 2001 From: Mike Kasberg Date: Sun, 14 Aug 2016 12:36:19 -0600 Subject: [PATCH] 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. --- site/_docs/deployment-methods.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/site/_docs/deployment-methods.md b/site/_docs/deployment-methods.md index 32e0e22a..af6edf73 100644 --- a/site/_docs/deployment-methods.md +++ b/site/_docs/deployment-methods.md @@ -98,13 +98,12 @@ Another way to deploy your Jekyll site is to use [Rake](https://github.com/ruby/ ### scp Once you’ve generated the `_site` directory, you can easily scp it using a -`tasks/deploy` shell script similar to [this deploy script][]. You’d obviously -need to change the values to reflect your site’s 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