mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
11 lines
283 B
Bash
Executable file
11 lines
283 B
Bash
Executable file
#!/bin/bash
|
|
|
|
check_prereq()
|
|
{
|
|
local dependency=$1
|
|
type "$dependency" >/dev/null 2>&1 || { echo >&2 "Mattermost Enterprise requires '$dependency' but it doesn't appear to be installed. Aborting."; exit 1; }
|
|
}
|
|
|
|
echo "Checking enterprise prerequisites"
|
|
|
|
check_prereq 'xmlsec1'
|