From 4acd11746b881eb9ed21fc67514ff5b6e8c2ba91 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Mon, 8 Apr 2024 14:58:13 -0300 Subject: [PATCH] Clone without --depth 1 --- libexec/portzap/portzap-clone | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/portzap/portzap-clone b/libexec/portzap/portzap-clone index 1fa4670..64251f4 100755 --- a/libexec/portzap/portzap-clone +++ b/libexec/portzap/portzap-clone @@ -12,7 +12,7 @@ if [ -e "${gitdir}/.git" ]; then echo "Try 'portzap pull' instead." exit 1 fi -umask u=rwX,g=rX,o=rX +umask u=rwX,g=rX,o= set -x -git clone --depth 1 "${giturl}" "${gitdir}" +git clone "${giturl}" "${gitdir}" cd "${gitdir}"