Skip to content
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
6 changes: 6 additions & 0 deletions runner/cmd/runner/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ func mainInner() int {
Usage: "dstack server or user authorized key. May be specified multiple times",
Destination: &sshAuthorizedKeys,
},
// --home-dir is not used since 0.20.4, but the flag was retained as no-op
// for compatibility with pre-0.20.4 shims; remove the flag eventually
&cli.StringFlag{
Name: "home-dir",
Hidden: true,
},
},
Action: func(ctx context.Context, cmd *cli.Command) error {
return start(ctx, tempDir, httpPort, sshPort, sshAuthorizedKeys, logLevel, Version)
Expand Down