8 lines
241 B
Bash
8 lines
241 B
Bash
#!/bin/bash
|
|
echo "-- Building and starting Necronda Server..."
|
|
make update && make compile && \
|
|
echo -e "-- Successfully finished compiling!\n" && \
|
|
sleep 0.0625 && \
|
|
echo -e "-- Starting Server...\n" && \
|
|
authbind ./bin/necronda-server
|