Error message indentation fix

This commit is contained in:
Sander Declerck 2026-02-05 11:08:04 +01:00
parent bab128ab26
commit 369167e005
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ async function setup() {
await validatePowerShellExecutionPolicy(executableName);
if (!isValid) {
throw new Error(
`PowerShell execution policy is set to '${policy}', which prevents safe-chain from running.\n\nTo fix this, open PowerShell as Administrator and run: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned. `,
`PowerShell execution policy is set to '${policy}', which prevents safe-chain from running.\n -> To fix this, open PowerShell as Administrator and run: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned. `,
);
}