File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ exclude = [
3636# Workspace Package Metadata (inherited by all crates)
3737# ─────────────────────────────────────────────────────────────────────────────
3838[workspace .package ]
39- version = " 0.3.48 "
39+ version = " 0.3.49 "
4040edition = " 2024"
4141rust-version = " 1.85"
4242license = " MPL-2.0 OR LicenseRef-UFFS-Commercial"
Original file line number Diff line number Diff line change @@ -60,7 +60,8 @@ function RunDriveBench($driveLetter) {
6060 Write-Host " 📁 DRIVE ${driveLetter} :" - ForegroundColor Yellow
6161 Write-Host " ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" - ForegroundColor DarkGray
6262 if (-not $CppOnly ) {
63- BenchCold " Rust (cold)" { & $UFFS search " $Pattern " -- drive $driveLetter }
63+ # Note: no "search" subcommand - pattern is the default action
64+ BenchCold " Rust (cold)" { & $UFFS " $Pattern " -- drive $driveLetter }
6465 }
6566 if (-not $RustOnly -and (Test-Path $UFFS_CPP )) {
6667 BenchCold " C++ (cold)" { & $UFFS_CPP " $Pattern " -- drives= $driveLetter }
@@ -72,7 +73,8 @@ function RunAllDrivesBench() {
7273 Write-Host " 🌐 ALL DRIVES:" - ForegroundColor Yellow
7374 Write-Host " ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" - ForegroundColor DarkGray
7475 if (-not $CppOnly ) {
75- BenchCold " Rust (cold)" { & $UFFS search " $Pattern " }
76+ # Note: no "search" subcommand - pattern is the default action
77+ BenchCold " Rust (cold)" { & $UFFS " $Pattern " }
7678 }
7779 if (-not $RustOnly -and (Test-Path $UFFS_CPP )) {
7880 BenchCold " C++ (cold)" { & $UFFS_CPP " $Pattern " }
You can’t perform that action at this time.
0 commit comments