Source code for rezplugins.shell.powershell

# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the Rez Project


"""Windows PowerShell 5"""

from rez.utils.platform_ import platform_
from ._utils.powershell_base import PowerShellBase


[docs]class PowerShell(PowerShellBase):
[docs] @classmethod def name(cls): return 'powershell'
[docs] @classmethod def file_extension(cls): return 'ps1'
[docs]def register_plugin(): if platform_.name == "windows": return PowerShell