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