Skip to content

Commit

Permalink
Extract tarball with xvf during setup
Browse files Browse the repository at this point in the history
In a pipeline run we saw the following error when extracting the tarball on the test node:

Adding v to extract the contents with verbose
  • Loading branch information
maddieford authored Jul 18, 2023
1 parent eb67957 commit 144668b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests_e2e/orchestrator/lib/agent_test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ def _setup_node(self, install_test_agent: bool) -> None:
# Extract the tarball and execute the install scripts
#
log.info('Installing tools on the test node')
command = f"tar xf {target_path/tarball_path.name} && ~/bin/install-tools"
command = f"tar xvf {target_path/tarball_path.name} && ~/bin/install-tools"
log.info("Remote command [%s] completed:\n%s", command, self.context.ssh_client.run_command(command))

if self.context.is_vhd:
Expand Down

0 comments on commit 144668b

Please sign in to comment.