Skip to content

Commit 7682f94

Browse files
committed
Corrects missing major version
1 parent 858adfc commit 7682f94

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

TouchDesigner/project.toe

-296 Bytes
Binary file not shown.

scripts/project_settings.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

scripts/td_builder/build_settings.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ class settings:
55
REQUIRED_KEYS: list = ["TD_VERSION", "PROJECT_FILE", "REPO", "COMP_NAME"]
66

77
def __init__(self):
8+
self.build = "TRUE"
89
self.project_file: str
910
self.td_version: str
1011
self.log_file: str
@@ -32,7 +33,7 @@ def project_name(self) -> str:
3233
def env_vars(self) -> dict:
3334
# build required keys
3435
env_vars = {
35-
"SM_BUILD": "TRUE",
36+
"SM_BUILD": self.build,
3637
"SM_PRIVACY": "FALSE",
3738
"SM_SAVE_PATH": f"../{self.dest_dir}",
3839
"SM_COMP_NAME": self.project_name,

0 commit comments

Comments
 (0)