Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 3m12s
- Changed "Skip tour" button to "Cancel" in various tutorial overlays. - Updated modal titles from "Confirm Task" to "Confirm Penalty" where applicable. - Modified tutorial step call-to-action labels from "Got it" and "Next" to "Continue" for consistency. - Added tests for new tutorial overlay behavior and button interactions. - Refactored tutorial controller to allow ignoring tutorial enabled state in step visibility checks. - Enhanced user profile tutorial restart functionality with appropriate modal messages. - Updated user profile and task confirmation dialog components to reflect new titles and messages. - Adjusted configuration files for local development environments.
13 lines
292 B
Python
13 lines
292 B
Python
#!/usr/bin/env python3
|
|
"""Detect OS and copy the correct opencode.json config."""
|
|
|
|
import platform
|
|
import shutil
|
|
|
|
if platform.system() == "Darwin":
|
|
src = "opencode.mac.json"
|
|
else:
|
|
src = "opencode.windows.json"
|
|
|
|
shutil.copy(src, "opencode.json")
|
|
print(f"Copied {src} -> opencode.json") |