- #!/bin/bash
- if ! [ -d ".bin" ]; then
- echo "Missing binary directory"
- echo "Please run 'build' or report this https://git.red-green.com/david/Core/issues/new"
- exit -1
- fi
- if ! [ -f ".bin/core-server" ]; then
- echo "Missing server binary"
- echo "Please run 'build' or report this https://git.red-green.com/david/Core/issues/new"
- exit -1
- fi
- ./.bin/core-server
|