Skip to content

Commit

Permalink
install xz manually to test
Browse files Browse the repository at this point in the history
Signed-off-by: muthuja <[email protected]>
  • Loading branch information
muthuja committed Feb 27, 2025
1 parent c974c8c commit 87e42cf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/omnibus/fetchers/net_fetcher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ def downloaded_file
filename = source[:cached_name] if source[:cached_name]
filename ||= File.basename(source[:url], "?*")
File.join(Config.cache_dir, filename)
# Install xz
log.info(log_key) { "-----DEBUG-----Installing xz--------" }
shellout!("brew install xz")
log.info(log_key) { "-----DEBUG-----Installing xz complete--------" }
end

#
Expand Down Expand Up @@ -163,9 +167,6 @@ def download_url
#
def download
log.warn(log_key) { source[:warning] } if source.key?(:warning)
log.info(log_key) { "-----DEBUG-----installing xz just to test------" }
shellout!(brew install xz)
log.info(log_key) { "-----DEBUG-----completing installation of xz------" }

options = {}

Expand Down

0 comments on commit 87e42cf

Please sign in to comment.