Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,8 @@ export class InitCliUsecases {

// Copy the additional files to the cortex-cpp directory
for (const file of readdirSync(join(engineDir, engine))) {
if (file !== 'engine.dll') {
if (!file.includes('engine')) {
await cpSync(join(engineDir, engine, file), join(engineDir, file));
await rmSync(join(engineDir, engine, file));
}
}
decompressIndicator.succeed('Engine decompressed');
Expand Down