Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 769f22f

Browse files
committed
Using tar -m to fix timestamp dismatch issue during install
Signed-off-by: jdai12 <[email protected]> Change-Id: Ife76712d9c97f4b579590270539aaaa0dc48d7e1 Reviewed-on: https://git-ccr-1.devtools.intel.com/gerrit/56099
1 parent 1c2a2ed commit 769f22f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools-woogeen/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ download_third_party_module() {
2020

2121
wget ${repo}/+archive/${commit}/${module_name}.tar.gz -O ${download_dir}/${download_name}.${commit}.tar.gz
2222
mkdir -p ${dst}
23-
tar -zxf ${download_dir}/${download_name}.${commit}.tar.gz -C ${dst}
23+
tar -m -zxf ${download_dir}/${download_name}.${commit}.tar.gz -C ${dst}
2424
}
2525

2626
download_project() {
@@ -32,7 +32,7 @@ download_project() {
3232

3333
wget ${repo}/+archive/${commit}.tar.gz -O ${download_dir}/${download_name}.${commit}.tar.gz
3434
mkdir -p ${dst}
35-
tar -zxf ${download_dir}/${download_name}.${commit}.tar.gz -C ${dst}
35+
tar -m -zxf ${download_dir}/${download_name}.${commit}.tar.gz -C ${dst}
3636
}
3737

3838
# depto_tools

0 commit comments

Comments
 (0)