reapply work config

This commit is contained in:
Nathan
2025-10-27 16:03:08 -06:00
parent 860087be4d
commit 6849065df6
2 changed files with 288 additions and 2 deletions

View File

@@ -158,8 +158,8 @@ try {
"[$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss')] === UpdateSequences (ps1) started in '$root' ===" | Add-Content -LiteralPath $logFile
# Scan for folders with YYYY-MM-DD format (e.g., 2023-12-15) instead of daily_*
$dailyDirs = Get-ChildItem -LiteralPath $root -Directory -Filter '????-??-??' | Where-Object { $_.Name -ne '_archive' }
# Scan for folders with work convention: daily_*
$dailyDirs = Get-ChildItem -LiteralPath $root -Directory -Filter 'daily_*' | Where-Object { $_.Name -ne '_archive' }
$mapDaily = @{}
$dailiesScanned = 0