From 3fe59b04d6ed099c92d749a948f452f562cdae51 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Mon, 30 Sep 2024 12:03:02 +0900 Subject: [PATCH] -l option of 7z is unknown switch with the `ubuntu-latest`. https://github.com/ruby/actions/actions/runs/11095032727/job/30823174026#step:3:349 --- tool/make-snapshot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/make-snapshot b/tool/make-snapshot index 7446f18578..3479e2ac85 100755 --- a/tool/make-snapshot +++ b/tool/make-snapshot @@ -56,7 +56,7 @@ PACKAGES = { DEFAULT_PACKAGES = PACKAGES.keys - ["tar"] if !$no7z and system("7z", out: IO::NULL) PACKAGES["gzip"] = %w".tar.gz 7z a dummy -tgzip -mx -so" - PACKAGES["zip"] = %w".zip 7z a -tzip -l -mx -mtc=off" << {out: IO::NULL} + PACKAGES["zip"] = %w".zip 7z a -tzip -mx -mtc=off" << {out: IO::NULL} elsif gzip = ENV.delete("GZIP") PACKAGES["gzip"].concat(gzip.shellsplit) end