7 lines
191 B
Bash
Executable File
7 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
echo "-- Building and starting Necronda Server..."
|
|
make compile && \
|
|
echo "-- Successfully finished compiling!" && \
|
|
echo "-- Starting Server..." && \
|
|
./bin/necronda-server $@
|