Skip to content

Commit e6c9fe5

Browse files
authored
Merge pull request #1110 from mook-as/lima-k3s-log
Lima: fix log file name.
2 parents 1c4c40c + 963bd87 commit e6c9fe5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/k8s-engine/lima.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ ${ commands.join('\n') }
10181018
this.logProcess?.kill('SIGTERM');
10191019
} catch (ex) { }
10201020
let args = ['shell', '--workdir=.', MACHINE_NAME,
1021-
'/usr/bin/tail', '-n+1', '-F', '/var/log/k3s'];
1021+
'/usr/bin/tail', '-n+1', '-F', '/var/log/k3s.log'];
10221022

10231023
args = this.debug ? ['--debug'].concat(args) : args;
10241024
this.logProcess = childProcess.spawn(

0 commit comments

Comments
 (0)