Files
TinyORM/tools/std.ps1
2024-06-09 23:47:26 +02:00

17 lines
584 B
PowerShell

#!/usr/bin/env pwsh
Param(
[Parameter(Position = 0, ValueFromPipeline, ValueFromPipelinebyPropertyName,
HelpMessage = 'Specifies the TinyORM debug build folder to add.')]
[ValidateNotNullOrEmpty()]
[string[]] $BuildPath = (Get-Location).Path
)
Set-StrictMode -Version 3.0
Add-FolderOnPath.ps1 -Path $BuildPath\drivers\common\debug,
$BuildPath\drivers\mysql\debug,
$BuildPath\src\debug,
$BuildPath\examples\tom\debug,
$BuildPath\tests\testdata_tom\debug