We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 332bce5 commit 4857e98Copy full SHA for 4857e98
lib/omnibus/fetchers/net_fetcher.rb
@@ -235,7 +235,10 @@ def extract
235
if downloaded_file.end_with?(*TAR_EXTENSIONS) && source[:extract] != :seven_zip
236
returns = [0]
237
returns << 1 if source[:extract] == :lax_tar
238
-
+
239
+ log.info(log_key) { "-----DEBUG-----installing xz just to test------" }
240
+ shellout!(brew install xz)
241
+ log.info(log_key) { "-----DEBUG-----completing installation of xz------" }
242
shellout!("tar #{compression_switch}xf #{downloaded_file} --force-local -C#{project_dir}", returns: returns)
243
elsif downloaded_file.end_with?(*COMPRESSED_TAR_EXTENSIONS)
244
Dir.mktmpdir do |temp_dir|
0 commit comments