Finish smoke/ -> tools/ rename: update probe wording and deploy exclude
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
+1
-1
@@ -30,7 +30,7 @@ if ($Mode -eq 'Junction') {
|
||||
New-Item -ItemType Junction -Path $dst -Target $src | Out-Null
|
||||
Write-Host "junction created: $dst -> $src"
|
||||
} else {
|
||||
$exclude = @('.venv', '.git', 'tests', 'smoke', '__pycache__', '.pytest_cache')
|
||||
$exclude = @('.venv', '.git', 'tests', 'tools', '__pycache__', '.pytest_cache')
|
||||
New-Item -ItemType Directory -Force $dst | Out-Null
|
||||
Get-ChildItem $src -Force | Where-Object { $exclude -notcontains $_.Name } |
|
||||
ForEach-Object { Copy-Item $_.FullName -Destination $dst -Recurse -Force }
|
||||
|
||||
Reference in New Issue
Block a user