fix: cli typo fix

This commit is contained in:
Yassine Sallemi 2024-10-08 17:20:50 +01:00
parent 58158e8f9e
commit 395d16021a

View File

@ -102,7 +102,7 @@ const dockerExec = (
stdio: 'inherit', stdio: 'inherit',
}); });
} catch (error) { } catch (error) {
console.error(chalk.red('Error executing Docker Compose command.')); console.error(chalk.red('Error executing Docker Exec command.'));
process.exit(1); process.exit(1);
} }
}; };