From 11cbb597471127c1b29e78e6cad0a1a4d93ea24c Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Thu, 17 May 2018 12:40:40 -0700 Subject: Renaming platform binary to mattermost. (#8801) --- cmd/platform/main.go | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 cmd/platform/main.go (limited to 'cmd/platform/main.go') diff --git a/cmd/platform/main.go b/cmd/platform/main.go new file mode 100644 index 000000000..b5ea51920 --- /dev/null +++ b/cmd/platform/main.go @@ -0,0 +1,39 @@ +// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. +// See LICENSE.txt for license information. + +package main + +import ( + "fmt" + "os" + "path/filepath" + "syscall" +) + +func findMattermostBinary() string { + for _, file := range []string{"./mattermost", "../mattermost", "./bin/mattermost"} { + path, _ := filepath.Abs(file) + if stat, err := os.Stat(path); err == nil && !stat.IsDir() { + return path + } + } + return "./mattermost" +} + +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") + if err := syscall.Exec(findMattermostBinary(), args, nil); err != nil { + fmt.Println("Could not start Mattermost, use the mattermost command directly.") + } +} -- cgit v1.2.3-1-g7c22