fix: add MACOS_APP_SOURCES_DIR constant and update test to use new path

The cron-protocol-conformance test was using LEGACY_MACOS_APP_SOURCES_DIR
which points to the old Clawdbot path. Added a new MACOS_APP_SOURCES_DIR
constant for the current Moltbot path and updated the test to use it.
This commit is contained in:
Alex Fallah
2026-01-27 11:38:27 -05:00
committed by Shadow
parent cf5ed4b5a4
commit 4a3102117b
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -7,3 +7,5 @@ export const LEGACY_PLUGIN_MANIFEST_FILENAME = `${LEGACY_PROJECT_NAME}.plugin.js
export const LEGACY_CANVAS_HANDLER_NAME = `${LEGACY_PROJECT_NAME}CanvasA2UIAction` as const;
export const LEGACY_MACOS_APP_SOURCES_DIR = "apps/macos/Sources/Clawdbot" as const;
export const MACOS_APP_SOURCES_DIR = "apps/macos/Sources/Moltbot" as const;