mirror of
https://github.com/alterware/master-server.git
synced 2025-04-20 04:15:43 +00:00
8 lines
156 B
Bash
Executable File
8 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
git submodule update --init --recursive
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
./tools/premake5-mac gmake2
|
|
else
|
|
./tools/premake5-linux gmake2
|
|
fi
|