Skip to content

Commit b72b53f

Browse files
committed
chore: add local install script for Zed dev testing
1 parent f3dcf77 commit b72b53f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scripts/install-local.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
# Install deps-lsp to ~/.local/bin for Zed dev extension testing
3+
4+
set -e
5+
6+
cargo build --release -p deps-lsp
7+
cp target/release/deps-lsp ~/.local/bin/
8+
echo "✓ Installed deps-lsp to ~/.local/bin/"
9+
echo " Restart Zed to use the new version"

0 commit comments

Comments
 (0)