mirror of
https://github.com/affaan-m/ECC.git
synced 2026-09-20 16:47:59 +02:00
12 lines
382 B
JavaScript
12 lines
382 B
JavaScript
const { HOME_INSTALL_EXCLUDED_SOURCE_PATHS, createInstallTargetAdapter } = require('./helpers');
|
|
|
|
module.exports = createInstallTargetAdapter({
|
|
id: 'codex-home',
|
|
target: 'codex',
|
|
kind: 'home',
|
|
rootSegments: ['.codex'],
|
|
installStatePathSegments: ['ecc-install-state.json'],
|
|
nativeRootRelativePath: '.codex',
|
|
excludedSourcePaths: HOME_INSTALL_EXCLUDED_SOURCE_PATHS,
|
|
});
|