コード例 #1
0
ファイル: __init__.py プロジェクト: linbaba222/PyTools
    def verify_tools(self):
        if self.host_os != 'Darwin':
            raise BriefcaseCommandError("""
macOS applications require the Xcode command line tools, which are
only available on macOS.
""")
        # Require the XCode command line tools.
        verify_command_line_tools_install(self)

        # Verify superclass tools *after* xcode. This ensures we get the
        # git check *after* the xcode check.
        super().verify_tools()
コード例 #2
0
ファイル: __init__.py プロジェクト: danyeaw/briefcase
    def verify_tools(self):
        if self.host_os != "Darwin":
            raise BriefcaseCommandError(
                "Code signing and / or building a DMG requires running on macOS."
            )

        # Require the XCode command line tools.
        verify_command_line_tools_install(self)

        # Verify superclass tools *after* xcode. This ensures we get the
        # git check *after* the xcode check.
        super().verify_tools()