Skip to content

Commit 34c19eb

Browse files
committed
Changed: Make verify scripts auto-format code
1 parent c37ace1 commit 34c19eb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/.cargo/verify.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ try {
7676
}
7777

7878
Write-Host "Formatting..."
79-
Invoke-LoggedCommand "cargo" @("fmt", "--all", "--check", "--quiet")
79+
Invoke-LoggedCommand "cargo" @("fmt", "--all", "--quiet")
8080

8181
Write-Host "Linux-only feature coverage..."
8282
if ($onLinux) {

src/.cargo/verify.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ DOC_ARGS=(--workspace --document-private-items --no-deps --quiet --exclude llm-c
6262
run_cmd env RUSTDOCFLAGS="-D warnings" cargo doc "${DOC_ARGS[@]}"
6363

6464
echo "Formatting..."
65-
run_cmd cargo fmt --all --check --quiet
65+
run_cmd cargo fmt --all --quiet
6666

6767
echo "Linux-only feature coverage..."
6868
if [ "$IS_LINUX" = true ]; then

0 commit comments

Comments
 (0)