Update deploy scripts

This commit is contained in:
2026-04-06 08:49:33 +02:00
parent c1ffbc3f3a
commit e98f9ad2d9
3 changed files with 38 additions and 17 deletions

3
.gitignore vendored
View File

@@ -1 +1,2 @@
_agent-data/ _agent-data/
.claude/

View File

@@ -11,7 +11,8 @@ $TARGET = "S:\7-Infrastructure\lib\plugins\luxtools"
$DRY_RUN = $false $DRY_RUN = $false
$DELETE = $true $DELETE = $true
function Resolve-PathUsingExistingCase { function Resolve-PathUsingExistingCase
{
param( param(
[Parameter(Mandatory = $true)] [Parameter(Mandatory = $true)]
[string]$Path [string]$Path
@@ -20,7 +21,8 @@ function Resolve-PathUsingExistingCase {
$fullPath = [System.IO.Path]::GetFullPath($Path) $fullPath = [System.IO.Path]::GetFullPath($Path)
$root = [System.IO.Path]::GetPathRoot($fullPath).TrimEnd('\\') $root = [System.IO.Path]::GetPathRoot($fullPath).TrimEnd('\\')
if ($fullPath.TrimEnd('\\') -ieq $root) { if ($fullPath.TrimEnd('\\') -ieq $root)
{
return $root return $root
} }
@@ -28,12 +30,14 @@ function Resolve-PathUsingExistingCase {
$leaf = Split-Path -Path $fullPath -Leaf $leaf = Split-Path -Path $fullPath -Leaf
$resolvedParent = Resolve-PathUsingExistingCase -Path $parent $resolvedParent = Resolve-PathUsingExistingCase -Path $parent
if (Test-Path -LiteralPath $resolvedParent) { if (Test-Path -LiteralPath $resolvedParent)
{
$match = Get-ChildItem -LiteralPath $resolvedParent -Force -ErrorAction SilentlyContinue | $match = Get-ChildItem -LiteralPath $resolvedParent -Force -ErrorAction SilentlyContinue |
Where-Object { $_.Name -ieq $leaf } | Where-Object { $_.Name -ieq $leaf } |
Select-Object -First 1 Select-Object -First 1
if ($null -ne $match) { if ($null -ne $match)
{
return (Join-Path -Path $resolvedParent -ChildPath $match.Name) return (Join-Path -Path $resolvedParent -ChildPath $match.Name)
} }
} }
@@ -41,18 +45,22 @@ function Resolve-PathUsingExistingCase {
return (Join-Path -Path $resolvedParent -ChildPath $leaf) return (Join-Path -Path $resolvedParent -ChildPath $leaf)
} }
foreach ($arg in $args) { foreach ($arg in $args)
if ($arg -eq "--dry-run" -or $arg -eq "-n") { {
if ($arg -eq "--dry-run" -or $arg -eq "-n")
{
$DRY_RUN = $true $DRY_RUN = $true
continue continue
} }
if ($arg -eq "--no-delete") { if ($arg -eq "--no-delete")
{
$DELETE = $false $DELETE = $false
continue continue
} }
if ($arg -eq "-h" -or $arg -eq "--help") { if ($arg -eq "-h" -or $arg -eq "--help")
{
Get-Content $PSCommandPath Get-Content $PSCommandPath
exit 0 exit 0
} }
@@ -65,7 +73,8 @@ $TARGET = Resolve-PathUsingExistingCase -Path $TARGET
$SRC_DIR = $PSScriptRoot $SRC_DIR = $PSScriptRoot
# Safety checks: make sure source looks like luxtools plugin # Safety checks: make sure source looks like luxtools plugin
if (-not (Test-Path "$SRC_DIR/plugin.info.txt")) { if (-not (Test-Path "$SRC_DIR/plugin.info.txt"))
{
Write-Error "Error: '$SRC_DIR' doesn't look like luxtools (missing plugin.info.txt)." Write-Error "Error: '$SRC_DIR' doesn't look like luxtools (missing plugin.info.txt)."
exit 1 exit 1
} }
@@ -75,11 +84,14 @@ New-Item -ItemType Directory -Force -Path "$TARGET" | Out-Null
# Safety check: refuse to deploy to an obviously wrong directory. # Safety check: refuse to deploy to an obviously wrong directory.
# Allow empty dir (fresh install) OR existing luxtools plugin dir. # Allow empty dir (fresh install) OR existing luxtools plugin dir.
if (Test-Path "$TARGET/plugin.info.txt") { if (Test-Path "$TARGET/plugin.info.txt")
{
$content = Get-Content "$TARGET/plugin.info.txt" -ErrorAction SilentlyContinue $content = Get-Content "$TARGET/plugin.info.txt" -ErrorAction SilentlyContinue
if ($content -match "^base\s+luxtools" -or $content -match "^base\s+luxtools\s+") { if ($content -match "^base\s+luxtools" -or $content -match "^base\s+luxtools\s+")
{
# It's a luxtools plugin, allow it # It's a luxtools plugin, allow it
} else { } else
{
Write-Error "Error: target '$TARGET' has a plugin.info.txt, but it doesn't look like luxtools." Write-Error "Error: target '$TARGET' has a plugin.info.txt, but it doesn't look like luxtools."
Write-Error "Refusing to deploy." Write-Error "Refusing to deploy."
exit 1 exit 1
@@ -92,6 +104,8 @@ $EXCLUDE_DIRS = @(
"_agent-data", "_agent-data",
".github", ".github",
".vscode", ".vscode",
".zed",
".claude",
"_test" "_test"
) )
@@ -121,21 +135,25 @@ $ROBOCOPY_ARGS = @(
"/Z" # restartable mode "/Z" # restartable mode
) )
if ($EXCLUDE_DIRS.Count -gt 0) { if ($EXCLUDE_DIRS.Count -gt 0)
{
$ROBOCOPY_ARGS += "/XD" $ROBOCOPY_ARGS += "/XD"
$ROBOCOPY_ARGS += $EXCLUDE_DIRS $ROBOCOPY_ARGS += $EXCLUDE_DIRS
} }
if ($EXCLUDE_FILES.Count -gt 0) { if ($EXCLUDE_FILES.Count -gt 0)
{
$ROBOCOPY_ARGS += "/XF" $ROBOCOPY_ARGS += "/XF"
$ROBOCOPY_ARGS += $EXCLUDE_FILES $ROBOCOPY_ARGS += $EXCLUDE_FILES
} }
if ($DRY_RUN) { if ($DRY_RUN)
{
$ROBOCOPY_ARGS += "/L" # list mode $ROBOCOPY_ARGS += "/L" # list mode
} }
if ($DELETE) { if ($DELETE)
{
$ROBOCOPY_ARGS += "/MIR" # mirror $ROBOCOPY_ARGS += "/MIR" # mirror
} }

View File

@@ -72,6 +72,8 @@ RSYNC_ARGS=(
--exclude=_agent-data/ --exclude=_agent-data/
--exclude=.github/ --exclude=.github/
--exclude=.vscode/ --exclude=.vscode/
--exclude=.zed/
--exclude=.claude/
--exclude=_test/ --exclude=_test/
--exclude=deleted.files --exclude=deleted.files
--exclude=*.swp --exclude=*.swp