15 lines
365 B
PowerShell
15 lines
365 B
PowerShell
param(
|
|
[string]$ProfilePath = (Join-Path $PSScriptRoot "deploy-ftp.profile.psd1"),
|
|
[string]$Password,
|
|
[switch]$SkipRecycle,
|
|
[switch]$SkipMigrations
|
|
)
|
|
|
|
$scriptPath = Join-Path $PSScriptRoot "deploy-ftp.ps1"
|
|
|
|
& $scriptPath `
|
|
-ProfilePath $ProfilePath `
|
|
-Password $Password `
|
|
-SkipRecycle:$SkipRecycle `
|
|
-SkipMigrations:$SkipMigrations
|