Skip to content

Commit

Permalink
docker(install): print lima version
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
  • Loading branch information
crazy-max committed Dec 10, 2023
1 parent c8a1b7a commit 348446a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/docker/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ export class Install {
});
}

await core.group('Lima version', async () => {
await Exec.exec('lima', ['--version'], {env: envs});
});

await core.group('Creating lima config', async () => {
let limaDaemonConfig = {};
if (this.daemonConfig) {
Expand Down Expand Up @@ -183,7 +187,7 @@ export class Install {
};

await core.group('Starting lima instance', async () => {
const limaStartArgs = ['start', `--name=${this.limaInstanceName}`, '--tty=false'];
const limaStartArgs = ['start', `--name=${this.limaInstanceName}`];
if (process.env.LIMA_START_ARGS) {
limaStartArgs.push(process.env.LIMA_START_ARGS);
}
Expand Down

0 comments on commit 348446a

Please sign in to comment.