mirror of
https://github.com/OpenFactorioServerManager/factorio-server-manager.git
synced 2024-12-27 02:43:45 +02:00
10 lines
345 B
Bash
Executable File
10 lines
345 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Cloning ${FACTORIO_BRANCH}"
|
|
git clone -b ${FACTORIO_BRANCH} https://github.com/mroote/factorio-server-manager.git ${FACTORIO_ROOT}
|
|
echo "Creating build..."
|
|
make gen_release
|
|
echo "Copying build artifacts from ${PWD}"
|
|
mkdir -p /build
|
|
cp -v build/factorio-server-manager-linux.zip build/factorio-server-manager-windows.zip /build/
|