summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2026-09-06 00:16:19 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2026-09-06 00:22:35 -0400
commita9fd67d05d6819a839a60b581c1dc6eb2792a9be (patch)
tree1d3537c24875ef4582039610f68c0831c66307e4 /scripts
parentf9352694a78a2bcfd00d237398a2b30de14c70be (diff)
downloaddecky-lsfg-vk-a9fd67d05d6819a839a60b581c1dc6eb2792a9be.tar.gz
decky-lsfg-vk-a9fd67d05d6819a839a60b581c1dc6eb2792a9be.zip
refactor: make Steam branch integration read-only
Diffstat (limited to 'scripts')
-rw-r--r--scripts/generate_python_boilerplate.py2
-rw-r--r--scripts/generate_ts_schema.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/scripts/generate_python_boilerplate.py b/scripts/generate_python_boilerplate.py
index a03aa2b..d134337 100644
--- a/scripts/generate_python_boilerplate.py
+++ b/scripts/generate_python_boilerplate.py
@@ -244,7 +244,7 @@ def main():
print(f"Generated {schema_file.relative_to(project_root)}")
except Exception as e:
- print(f"āŒ Error generating Python files: {e}")
+ print(f"Error generating Python files: {e}")
sys.exit(1)
diff --git a/scripts/generate_ts_schema.py b/scripts/generate_ts_schema.py
index c4c0e8a..27969f1 100644
--- a/scripts/generate_ts_schema.py
+++ b/scripts/generate_ts_schema.py
@@ -132,11 +132,11 @@ def main():
target_file = project_root / "src" / "config" / "generatedConfigSchema.ts"
target_file.write_text(ts_content)
- print(f"āœ… Generated {target_file} from shared_config.py")
+ print(f"Generated {target_file} from shared_config.py")
print(f" Fields: {len(CONFIG_SCHEMA_DEF)}")
# Also generate Python boilerplate
- print("\nšŸ”„ Generating Python boilerplate...")
+ print("\nGenerating Python boilerplate...")
from pathlib import Path
import subprocess
@@ -147,10 +147,10 @@ def main():
if result.returncode == 0:
print(result.stdout)
else:
- print(f"āš ļø Python boilerplate generation had issues:\n{result.stderr}")
+ print(f"Warning: Python boilerplate generation had issues:\n{result.stderr}")
except Exception as e:
- print(f"āŒ Error generating schema: {e}")
+ print(f"Error generating schema: {e}")
sys.exit(1)