mirror of
https://github.com/silverqx/TinyORM.git
synced 2026-05-08 01:29:23 -05:00
15 lines
477 B
PowerShell
15 lines
477 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\src\release,
|
|
$BuildPath\examples\tom\release,
|
|
$BuildPath\tests\testdata_tom\release
|