summaryrefslogtreecommitdiffstats
path: root/cmd/platform/main.go
blob: 6d9952c70c20c1173d4c1b11fad0e0e8521e5600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

package main

import (
	"fmt"
	"os"
	"syscall"

	"github.com/mattermost/mattermost-server/utils"
)

func main() {
	// Print angry message to use mattermost command directly
	fmt.Println(`
------------------------------------ ERROR ------------------------------------------------
The platform binary has been deprecated, please switch to using the new mattermost binary.
The platform binary will be removed in a future version.
-------------------------------------------------------------------------------------------
	`)

	// Execve the real MM binary
	args := os.Args
	args[0] = "mattermost"
	args = append(args, "--platform")

	realMattermost := utils.FindFile("mattermost")
	if realMattermost == "" {
		// This will still fail, of course.
		realMattermost = "./mattermost"
	}

	if err := syscall.Exec(utils.FindFile("mattermost"), args, nil); err != nil {
		fmt.Println("Could not start Mattermost, use the mattermost command directly.")
	}
}