Fix $LogDirectory variable in MS Store installer

Addresses #4
pull/6/head
ThioJoe 2025-08-10 16:32:54 -04:00
parent df3ec01788
commit ff09e39343
No known key found for this signature in database
GPG Key ID: 2E328FE64CC3898C
1 changed files with 7 additions and 2 deletions

View File

@ -4,7 +4,7 @@
# Author: ThioJoe # Author: ThioJoe
# Repo Url: https://github.com/ThioJoe/Windows-Sandbox-Tools # Repo Url: https://github.com/ThioJoe/Windows-Sandbox-Tools
# Last Updated: August 6, 2025 # Last Updated: August 10, 2025
param( param(
# Optional switch to output the generated XML files to the working directory # Optional switch to output the generated XML files to the working directory
@ -45,6 +45,7 @@ $storeCategoryId = "64293252-5926-453c-9494-2d4021f1c78d"
# Combine them to create the full working directory path # Combine them to create the full working directory path
$workingDir = Join-Path -Path $userDownloadsFolder -ChildPath $subfolderName $workingDir = Join-Path -Path $userDownloadsFolder -ChildPath $subfolderName
$LogDirectory = Join-Path -Path $workingDir -ChildPath "Logs"
# Create the directory if it doesn't exist # Create the directory if it doesn't exist
if (-not (Test-Path -Path $workingDir)) { if (-not (Test-Path -Path $workingDir)) {
@ -52,7 +53,11 @@ if (-not (Test-Path -Path $workingDir)) {
} }
If ($debugSaveFiles) { If ($debugSaveFiles) {
Write-Host "All files (logs, downloads) will be saved to: '$workingDir'" -ForegroundColor Yellow # Create a subdirectory for logs if it doesn't exist
if (-not (Test-Path -Path $LogDirectory)) {
New-Item -Path $LogDirectory -ItemType Directory -Force | Out-Null
}
Write-Host "All files (logs, downloads) will be saved to: '$LogDirectory'" -ForegroundColor Yellow
} }
# --- XML Templates --- # --- XML Templates ---