mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 12:38:02 +00:00
11 lines
299 B
Bash
Executable file
11 lines
299 B
Bash
Executable file
#!/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
|