mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 20:05:58 +08:00
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:
parent
1156ad7f56
commit
f94198c108
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user