We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4cad54 commit cdeaa61Copy full SHA for cdeaa61
lib/omnibus/fetchers/net_fetcher.rb
@@ -163,8 +163,9 @@ def execute_tests(file_path)
163
log.info(log_key) { "-----DEBUG-----checking gtar and xz versions and path" }
164
shellout!("gtar --version")
165
shellout!("which gtar")
166
- shellout!("xz --version")
+ shellout!(export PATH="/opt/homebrew/bin/xz:$PATH")
167
shellout!("which xz")
168
+ shellout!("xz --version")
169
log.info(log_key) { "-----DEBUG-----end of the test to here" }
170
# Extract the archive
171
archive_path = File.join(test_dir, File.basename(file_path))
0 commit comments