You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
331 B
8 lines
331 B
# 检查点 B — 文件触发
|
|
$root = Resolve-Path (Join-Path $PSScriptRoot "..\..")
|
|
$dir = Join-Path $root ".rpa\phase0"
|
|
New-Item -ItemType Directory -Force -Path $dir | Out-Null
|
|
$file = Join-Path $dir "trigger-checkpoint-b"
|
|
New-Item -ItemType File -Force -Path $file | Out-Null
|
|
Write-Host "[phase0] 已触发检查点 B: $file"
|