From 20c886874489b2dfac05ffe6a5d2fc5c96018bf8 Mon Sep 17 00:00:00 2001 From: Frank Tovar Date: Mon, 18 May 2026 19:06:13 +0200 Subject: [PATCH] remove stale script --- deploy.ps1 | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 deploy.ps1 diff --git a/deploy.ps1 b/deploy.ps1 deleted file mode 100644 index bf03d4c..0000000 --- a/deploy.ps1 +++ /dev/null @@ -1,17 +0,0 @@ -param( - [string]$Password, - [switch]$SkipRecycle, - [switch]$SkipMigrations -) - -Set-StrictMode -Version Latest -$ErrorActionPreference = "Stop" - -$scriptPath = Join-Path $PSScriptRoot "scripts/deploy-ftp1.ps1" -$profilePath = Join-Path $PSScriptRoot "scripts/deploy-ftp.profile.psd1" - -& $scriptPath ` - -ProfilePath $profilePath ` - -Password $Password ` - -SkipRecycle:$SkipRecycle ` - -SkipMigrations:$SkipMigrations