diff options
author | 2022-07-27 21:18:58 -0700 | |
---|---|---|
committer | 2022-07-27 21:18:58 -0700 | |
commit | 7c5c4f5694d23fb45aa7bfa273fb10611da2173c (patch) | |
tree | ba3652478b9323cb69c82c720c7de3e4bca0527a /.devcontainer/scripts/zig-env.sh | |
parent | 6b25e6935e7bbfa42aa2a36e2a8f9a4907c8cf64 (diff) | |
download | bun-7c5c4f5694d23fb45aa7bfa273fb10611da2173c.tar.gz bun-7c5c4f5694d23fb45aa7bfa273fb10611da2173c.tar.zst bun-7c5c4f5694d23fb45aa7bfa273fb10611da2173c.zip |
Clean up some things with the devcontainer
Diffstat (limited to '.devcontainer/scripts/zig-env.sh')
-rw-r--r-- | .devcontainer/scripts/zig-env.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.devcontainer/scripts/zig-env.sh b/.devcontainer/scripts/zig-env.sh index 7e965b16c..a9a0d95b5 100644 --- a/.devcontainer/scripts/zig-env.sh +++ b/.devcontainer/scripts/zig-env.sh @@ -1,7 +1,7 @@ #!/bin/bash curl -L https://github.com/Jarred-Sumner/vscode-zig/releases/download/march18/zig-0.2.5.vsix >/home/ubuntu/vscode-zig.vsix -git clone https://github.com/zigtools/zls /home/ubuntu/zls +git clone https://github.com/oven-sh/zls /home/ubuntu/zls cd /home/ubuntu/zls git submodule update --init --recursive --progress --depth=1 zig build -Drelease-fast |