From 76bbdb48893f4a70d9d492fabf3cf030130d100f Mon Sep 17 00:00:00 2001 From: Alex Young Date: Thu, 19 Jul 2012 17:22:25 +0100 Subject: [PATCH] Force gzipping the man page --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 5edf54f..43586f6 100644 --- a/Rakefile +++ b/Rakefile @@ -50,7 +50,7 @@ file "README.txt" file "build/flexnbd.1.gz" => "README.txt" do FileUtils.mkdir_p( "build" ) sh "a2x --destination-dir build --format manpage README.txt" - sh "gzip build/flexnbd.1" + sh "gzip -f build/flexnbd.1" end desc "Build just the man page"