Skip to content

Commit af405b2

Browse files
authored
fix(bootstrap): if not already, prompt to auth when bootstrapping sbx (#600)
* fix(bootstrap): if not already, prompt to auth when bootstrapping sandbox * chore: bump version
1 parent 3a00cef commit af405b2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

cmd/lk/app.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,10 @@ func setupTemplate(ctx context.Context, cmd *cli.Command) error {
242242
}
243243

244244
if isSandbox {
245+
_, err := requireProject(ctx, cmd)
246+
if err != nil {
247+
return err
248+
}
245249
token, err := requireToken(ctx, cmd)
246250
if err != nil {
247251
return err

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
package livekitcli
1616

1717
const (
18-
Version = "2.4.10"
18+
Version = "2.4.12"
1919
)

0 commit comments

Comments
 (0)