mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-06 03:00:50 +03:00
bd746145b0
This should speed up any docs-only PRs so that they don't have to run the full 5 minute battery of tests. Release Notes: - N/A
15 lines
340 B
Bash
Executable File
15 lines
340 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
TYPOS_CLI_VERSION=1.24.6
|
|
TARGET_DIR=${1:-""}
|
|
|
|
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 $TARGET_DIR
|