From 5ed09e3a98ae6edc075ecc2633d8af606010814b Mon Sep 17 00:00:00 2001 From: Ed Reel Date: Sat, 19 Apr 2025 23:44:00 -0500 Subject: [PATCH] Fix compressdoc bug (#11777) Co-authored-by: Satadru Pramanik, DO, MPH, MEng --- bin/crew | 2 +- lib/const.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/crew b/bin/crew index 616b07d2b..64585c514 100755 --- a/bin/crew +++ b/bin/crew @@ -760,7 +760,7 @@ def compress_doc(dir) # check whether crew should compress return if CREW_NOT_COMPRESS || @pkg.no_compress? || !File.file?("#{CREW_PREFIX}/bin/compressdoc") || !Dir.exist?(dir) - system 'compressdoc', '--zstd', @short_verbose, dir + system "compressdoc --zstd #{@short_verbose} #{dir}" end def prepare_package(destdir) diff --git a/lib/const.rb b/lib/const.rb index 036ec9c35..5a031d85a 100644 --- a/lib/const.rb +++ b/lib/const.rb @@ -3,7 +3,7 @@ require 'etc' OLD_CREW_VERSION ||= defined?(CREW_VERSION) ? CREW_VERSION : '1.0' -CREW_VERSION ||= '1.58.3' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION +CREW_VERSION ||= '1.58.4' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION # Kernel architecture. KERN_ARCH ||= Etc.uname[:machine]