mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-15 22:12:19 -04:00
Combines the following repositories into one: https://github.com/mattermost/mattermost-server https://github.com/mattermost/mattermost-webapp https://github.com/mattermost/focalboard https://github.com/mattermost/mattermost-plugin-playbooks
7 lines
84 B
Bash
Executable file
7 lines
84 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ "${1:0:1}" = '-' ]; then
|
|
set -- mattermost "$@"
|
|
fi
|
|
|
|
exec "$@"
|