mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-03 17:44:30 +00:00
12 lines
299 B
Text
12 lines
299 B
Text
|
#!/bin/sh
|
||
|
|
||
|
TYPOS_CLI_VERSION=1.24.6
|
||
|
|
||
|
if ! cargo install --list | grep "typos-cli v$TYPOS_CLI_VERSION" > /dev/null; then
|
||
|
echo "Installing typos-cli@$TYPOS_CLI_VERSION..."
|
||
|
cargo install "typos-cli@$TYPOS_CLI_VERSION"
|
||
|
else
|
||
|
echo "typos-cli@$TYPOS_CLI_VERSION is already installed."
|
||
|
fi
|
||
|
typos
|