Skip to content

Commit

Permalink
fix(pycloudlib): missing tar option to not restore file timestamp #613
Browse files Browse the repository at this point in the history
  • Loading branch information
iromli committed Jan 19, 2022
1 parent 878bd69 commit 1846fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jans-pycloudlib/jans/pycloudlib/meta/kubernetes_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def copy_to_container(self, container, path: str) -> None:
self.client.connect_get_namespaced_pod_exec,
container.metadata.name,
container.metadata.namespace,
command=["tar", "xvf", "-", "-C", "/"],
command=["tar", "xmvf", "-", "-C", "/"],
container=self._get_main_container_name(container),
stderr=True,
stdin=True,
Expand Down

0 comments on commit 1846fc9

Please sign in to comment.