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 "$@"
|