Skip to content

Commit e9a38d2

Browse files
authored
[Bug] Unblock shell when build fails (#211)
## Summary Unblock shell when build fails. We are seeing ``` Error: Multiple buildable plans found: [{...}] ``` on `devbox shell` ## How was it tested? devbox shell
1 parent 965e05a commit e9a38d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

devbox.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ const (
314314
)
315315

316316
func (d *Devbox) ensurePackagesAreInstalled(mode installMode) error {
317-
if err := d.Generate(); err != nil {
317+
if err := d.generateShellFiles(); err != nil {
318318
return err
319319
}
320320

0 commit comments

Comments
 (0)