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
389 B
8 lines
389 B
# 检查点 A — 文件触发(录证终端 Enter 无效时在「新终端」执行)
|
|
$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-a"
|
|
New-Item -ItemType File -Force -Path $file | Out-Null
|
|
Write-Host "[phase0] 已触发检查点 A: $file"
|