summaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorFly me to the moon <git@bigly.dog>2020-11-03 01:41:48 -0800
committerFly me to the moon <git@bigly.dog>2020-11-03 01:41:48 -0800
commitbc222624630816e03db63e31d9cf6c8ddb2ec2cc (patch)
tree437196fb2ba22db53ecaffeef421b61730932629 /ci
parent95c45d6ee49a05ac27217d7460e2eed8cbb3c73c (diff)
dont clone all
Diffstat (limited to 'ci')
-rwxr-xr-xci/release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/release.py b/ci/release.py
index ee950ff..5adefda 100755
--- a/ci/release.py
+++ b/ci/release.py
@@ -63,7 +63,7 @@ def git_clone(name: str) -> None:
email = "ci@ci.ci"
username = "ci-bot"
uri = f"https://ms-jpq:{token}@github.com/ms-jpq/homebrew-sad.git"
- call("git", "clone", uri, name)
+ call("git", "clone", "depth=1", uri, name)
call("git", "config", "user.email", email, cwd=name)
call("git", "config", "user.name", username, cwd=name)