Skip to content

Commit 097786e

Browse files
committed
Fix tar command in ext Rakefile to use explicit -z flag.
This flag is necessary on some platforms.
1 parent efdaf99 commit 097786e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/rabbitmq/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ file_task 'rabbitmq-c.tar.gz', :download_tarball do
3232
end
3333

3434
file_task 'rabbitmq-c', :download => :download_tarball do
35-
cmd "tar -xf #{FILES[:download_tarball]}"
35+
cmd "tar -zxf #{FILES[:download_tarball]}"
3636
cmd "mv rabbitmq-c-* #{FILES[:download]}"
3737
end
3838

0 commit comments

Comments
 (0)