11 lines
314 B
PowerShell
11 lines
314 B
PowerShell
param(
|
|
[string]$UnityProjectRoot = '',
|
|
[string]$DocsRoot = ''
|
|
)
|
|
|
|
Write-Warning 'archive-check.ps1 is a compatibility entry. Use workflow-check.ps1 for new integrations.'
|
|
& (Join-Path $PSScriptRoot 'workflow-check.ps1') `
|
|
-UnityProjectRoot $UnityProjectRoot `
|
|
-DocsRoot $DocsRoot
|
|
exit $LASTEXITCODE
|