diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2024-02-28 16:29:59 -0500 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2024-02-28 16:29:59 -0500 |
| commit | 68677e4b0faec5b746a27bec036477ebf718f3c0 (patch) | |
| tree | 5c9e8883a5fac8479302109324890c2b1ec3d9b2 /bin | |
| parent | 7b68e7fc57b741d053698dd5e21c1833b151e377 (diff) | |
sync
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/zigup | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -73,11 +73,11 @@ install_zls() { zls_path="$zig_root/zls" if [ ! -d "$zls_path" ]; then echo "cloning zls" - git clone https://github.com/zigtools/zls.git "$zls_path" + git clone https://github.com/zigtools/zls.git "$zls_path" --depth 1 --single-branch --branch master fi cd "$zls_path" - echo "pulling zls" - git pull + echo "fetching zls" + git fetch origin master:master --depth 1 echo "building zls" zig build -Doptimize=ReleaseSafe |
