Use the rake helper for mkdir as this version makes two folders on Windows

This commit is contained in:
Matthew Scharley 2014-03-09 02:37:45 +11:00
parent 05664acd36
commit 0a403c744b
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ task :release => :build do
end
task :build do
sh "mkdir -p pkg"
mkdir_p "pkg"
sh "gem build #{gemspec_file}"
sh "mv #{gem_file} pkg"
end