mirror of
https://git.sr.ht/~edwardloveall/scribe
synced 2025-12-10 20:51:25 +00:00
8 lines
184 B
Bash
Executable File
8 lines
184 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Exit if any subcommand fails
|
|
set -e
|
|
set -o pipefail
|
|
|
|
crystal build src/start_server.cr -o ubuntu_server --release --cross-compile --target "x86_64-pc-linux-gnu"
|