set -x before we call git
This commit is contained in:
parent
cf3e87c11a
commit
b88947dbd1
2 changed files with 2 additions and 0 deletions
|
@ -13,4 +13,5 @@ if [ -e "${gitdir}/.git" ]; then
|
|||
exit 1
|
||||
fi
|
||||
umask u=rwX,g=rwX,o=
|
||||
set -x
|
||||
git clone --depth 1 "${giturl}" "${gitdir}"
|
||||
|
|
|
@ -8,6 +8,7 @@ gitdir=$1
|
|||
# main
|
||||
umask u=rwX,g=rwX,o=
|
||||
if [ -e "${gitdir}/.git" ]; then
|
||||
set -x
|
||||
cd "${gitdir}"
|
||||
git pull --rebase origin hardenedbsd/main
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue