@@ -539,7 +539,8 @@ func (d *Devbox) Services() (services.Services, error) {
539
539
}
540
540
541
541
func (d * Devbox ) StartServices (
542
- ctx context.Context , runInCurrentShell bool , serviceNames ... string ) error {
542
+ ctx context.Context , runInCurrentShell bool , serviceNames ... string ,
543
+ ) error {
543
544
if ! runInCurrentShell {
544
545
return d .RunScript (ctx , "devbox" ,
545
546
append (
@@ -581,7 +582,7 @@ func (d *Devbox) StartServices(
581
582
return nil
582
583
}
583
584
584
- func (d * Devbox ) StopServices (ctx context.Context , runInCurrentShell bool , allProjects bool , serviceNames ... string ) error {
585
+ func (d * Devbox ) StopServices (ctx context.Context , runInCurrentShell , allProjects bool , serviceNames ... string ) error {
585
586
if ! runInCurrentShell {
586
587
args := []string {"services" , "stop" , "--run-in-current-shell" }
587
588
args = append (args , serviceNames ... )
@@ -660,7 +661,8 @@ func (d *Devbox) ListServices(ctx context.Context, runInCurrentShell bool) error
660
661
}
661
662
662
663
func (d * Devbox ) RestartServices (
663
- ctx context.Context , runInCurrentShell bool , serviceNames ... string ) error {
664
+ ctx context.Context , runInCurrentShell bool , serviceNames ... string ,
665
+ ) error {
664
666
if ! runInCurrentShell {
665
667
return d .RunScript (ctx , "devbox" ,
666
668
append (
0 commit comments