summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/Rakefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/Rakefile b/docs/Rakefile
index f8072072..6ef83d01 100644
--- a/docs/Rakefile
+++ b/docs/Rakefile
@@ -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]