Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import inspect
import re
import shutil
from dataclasses import dataclass
from pathlib import Path
from textwrap import dedent, indent
Expand Down Expand Up @@ -159,7 +160,13 @@ def lang_to_cmd(lang: str) -> str:
if lang in ["shell"]:
return "sh"
if lang in ["pwsh", "powershell", "ps1"]:
return "pwsh"
# Check if pwsh is available, otherwise fall back to powershell
if shutil.which("pwsh") is not None:
return "pwsh"
elif shutil.which("powershell") is not None:
return "powershell"
else:
raise ValueError(f"Powershell or pwsh is not installed. Please install one of them.")
else:
raise ValueError(f"Unsupported language: {lang}")

Expand Down
Loading