1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-07-06 23:36:34 +02:00

Rename focalboard-server binary

This commit is contained in:
Chen-I Lim
2021-01-28 14:23:52 -08:00
parent f1d974f7b9
commit b72f5ced7d
10 changed files with 26 additions and 26 deletions

View File

@ -11,7 +11,7 @@ import (
)
func runServer(ctx context.Context) {
cmd := exec.CommandContext(ctx, "./octoserver", "--monitorpid", strconv.FormatInt(int64(os.Getpid()), 10), "--single-user")
cmd := exec.CommandContext(ctx, "./focalboard-server", "--monitorpid", strconv.FormatInt(int64(os.Getpid()), 10), "--single-user")
cmd.Stdout = os.Stdout
err := cmd.Run()
if err != nil {