summaryrefslogtreecommitdiff
path: root/src/SMAPI.Installer/unix-install.sh
blob: df02bb373f7a49e65cb5c8f87537b3233ace9a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# Run the SMAPI installer through Mono on Linux or Mac.

# Move to script's directory
cd "`dirname "$0"`"

# get cross-distro version of POSIX command
COMMAND=""
if command -v command >/dev/null 2>&1; then
    COMMAND="command -v"
elif type type >/dev/null 2>&1; then
    COMMAND="type"
fi

# validate Mono & run installer
if $COMMAND mono >/dev/null 2>&1; then
    mono internal/Mono/install.exe
else
   echo "Oops! Looks like Mono isn't installed. Please install Mono from http://mono-project.com, reboot, and run this installer again."
   read
fi