refactor: rename app to aryx

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
David Kaya
2026-03-25 21:11:36 +01:00
co-authored by Copilot
parent cb7f216bc3
commit ab4e217d74
26 changed files with 81 additions and 81 deletions
+4 -4
View File
@@ -43,14 +43,14 @@ describe('resolveSidecarProcess', () => {
expect(
resolveSidecarProcess({
isPackaged: true,
appPath: '/Applications/Eryx.app/Contents/Resources/app',
resourcesPath: '/Applications/Eryx.app/Contents/Resources',
appPath: '/Applications/Aryx.app/Contents/Resources/app',
resourcesPath: '/Applications/Aryx.app/Contents/Resources',
platform: 'darwin',
}),
).toEqual({
command: '/Applications/Eryx.app/Contents/Resources/sidecar/Eryx.AgentHost',
command: '/Applications/Aryx.app/Contents/Resources/sidecar/Eryx.AgentHost',
args: ['--stdio'],
cwd: '/Applications/Eryx.app/Contents/Resources/sidecar',
cwd: '/Applications/Aryx.app/Contents/Resources/sidecar',
});
});
});