From 64f50a1b71c81f4e739273a408e2752d5efe8e6d Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 8 Dec 2009 01:25:52 -0800 Subject: [PATCH] publish md5 as well --- Rakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 8e07620e..6881ad2c 100644 --- a/Rakefile +++ b/Rakefile @@ -47,7 +47,8 @@ end desc "Publish to GitHub Pages" task :pages => [ :check_dirty, :standalone ] do `git checkout gh-pages` - `git add standalone` + `md5 -q standalone > standalone.md5` + `git add standalone*` `git commit -m "update standalone"` `git push origin gh-pages` `git checkout master`