From b7c54b8c6cbb5419939731afaed5833d14556b73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Tue, 29 May 2012 22:40:05 +0100 Subject: [PATCH] bugfix: more correctly create the Marmelade package for #217 --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3eb6710..b36a2f2 100644 --- a/Rakefile +++ b/Rakefile @@ -36,7 +36,9 @@ task :package do END end sh "git clean -f snippets" - sh "tar cf pkg/yasnippet-#{$version}.tar pkg/yasnippet-#{$version}" + FileUtils.cd 'pkg' do + sh "tar cf yasnippet-#{$version}.tar yasnippet-#{$version}" + end end desc "create a release package and upload it to google code"