Skip to content
Snippets Groups Projects
Commit 2af118cc authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

tar -xzf without dot as 2nd param

parent 0ffa5c03
Branches
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@
# 2021-07-08 v0.5 <axel.hahn@iml.unibe.ch> added function "runas"
# 2021-11-01 v0.6 <axel.hahn@iml.unibe.ch> save config diffs
# 2021-11-02 v0.7 <axel.hahn@iml.unibe.ch> delete logs keping N files
# 2022-11-24 v0.8 <axel.hahn@iml.unibe.ch> tar -xzf without dot as 2nd param
# ======================================================================
......@@ -210,9 +211,9 @@ function deploy(){
# ----------------------------------------------------------------------
header "Extract ${downloadfile} $( pwd )"
header "Extract ${downloadfile} in $( pwd )"
test $isupdate -eq 0 && echo $skipmessage
test $isupdate -eq 0 || tar -xzf "${downloadfile}" . || exit 3
test $isupdate -eq 0 || tar -xzf "${downloadfile}" || exit 3
ls -l
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment