mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-01-06 02:49:31 -06:00
17 lines
600 B
PowerShell
17 lines
600 B
PowerShell
#!/usr/bin/env pwsh
|
|
|
|
Param(
|
|
[Parameter(Position = 0, ValueFromPipeline, ValueFromPipelinebyPropertyName,
|
|
HelpMessage = 'Specifies the TinyORM release build folder to add.')]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string[]] $BuildPath = $($(Get-Location).Path)
|
|
)
|
|
|
|
Set-StrictMode -Version 3.0
|
|
|
|
Add-FolderOnPath.ps1 -Path $BuildPath\drivers\common\release,
|
|
$BuildPath\drivers\mysql\release,
|
|
$BuildPath\src\release,
|
|
$BuildPath\examples\tom\release,
|
|
$BuildPath\tests\testdata_tom\release
|