Fix behaviour of internal property

The attribute 'enterprise' in conanfile.py was incorrectly named and has been renamed to 'internal'.
This revision ensures that options are accessed correctly to avoid potential issues in usage.

Contributes to CURA-10831
This commit is contained in:
Jelle Spijker 2023-12-07 14:41:44 +01:00
parent 1156ad7f56
commit f94198c108
No known key found for this signature in database
GPG key ID: 034D1C0527888B65

View file

@ -86,7 +86,7 @@ class CuraConan(ConanFile):
@property
def _internal(self):
return self.options.enterprise in ["True", 'true']
return self.options.internal in ["True", 'true']
@property
def _app_name(self):