Skip to content

Commit

Permalink
Merge pull request #779 from 89luca89/fix/fleet_start
Browse files Browse the repository at this point in the history
fix: fleet should start if already installed
  • Loading branch information
pascalbreuninger authored Oct 27, 2023
2 parents a94e5b4 + e474a05 commit ce64a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ide/fleet/fleet.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (o *FleetServer) Install(projectDir string) error {
fleetBinary := filepath.Join(location, "fleet")
_, err = os.Stat(fleetBinary)
if err == nil {
return nil
return o.Start(fleetBinary, location, projectDir)
}

// check what release we need to download
Expand Down

0 comments on commit ce64a9c

Please sign in to comment.