1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Rake task to build source distribution for website

This commit is contained in:
Stephen Dolan
2013-05-11 14:48:39 +01:00
parent 18cf4ad475
commit d03149f4df

View File

@ -137,3 +137,10 @@ task :mantests do
end
end
directory "output/download/source"
task :tarball => ["output/download/source"] do
sh "cd ..; make dist"
sh "cp ../jq-*.tar.gz output/download/source"
end
task :dist => [:build, :binaries, :tarball]