Fix deploy profile data file compatibility
This commit is contained in:
@@ -4,10 +4,13 @@ param(
|
||||
[switch]$SkipMigrations
|
||||
)
|
||||
|
||||
$deployScript = Join-Path $PSScriptRoot "scripts\deploy-ftp1.ps1"
|
||||
$profilePath = Join-Path $PSScriptRoot "scripts\deploy-ftp.profile.psd1"
|
||||
Set-StrictMode -Version Latest
|
||||
$ErrorActionPreference = "Stop"
|
||||
|
||||
& $deployScript `
|
||||
$scriptPath = Join-Path $PSScriptRoot "scripts/deploy-ftp1.ps1"
|
||||
$profilePath = Join-Path $PSScriptRoot "scripts/deploy-ftp.profile.psd1"
|
||||
|
||||
& $scriptPath `
|
||||
-ProfilePath $profilePath `
|
||||
-Password $Password `
|
||||
-SkipRecycle:$SkipRecycle `
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
ProjectPath = "..\GameList.csproj"
|
||||
Configuration = "Release"
|
||||
Runtime = "win-x64"
|
||||
PublishDir = "$env:TEMP\GameList-publish"
|
||||
PublishDir = "%TEMP%\GameList-publish"
|
||||
SelfContained = $false
|
||||
|
||||
# Required sync settings
|
||||
|
||||
Reference in New Issue
Block a user