From 08d97a33c46311aa2d247e9b1a6b6b03823e34d0 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Wed, 25 Jan 2023 16:13:32 -0300 Subject: [PATCH] Clone without --depth 1 The background for this change was discussed on the HardenedBSD irc channel. It is known to cause issues with pull later on, due to hardware constraints on git.hardenedbsd.org. --- bin/portzap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/portzap b/bin/portzap index b6d17f1..187fea4 100755 --- a/bin/portzap +++ b/bin/portzap @@ -73,7 +73,7 @@ clone() { exit 1 fi umask $clone_mask - git clone --depth 1 $ports_url $portzap_dir + git clone $ports_url $portzap_dir else echo "Permission denied." fi