mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-03 05:43:09 +00:00
15 lines
362 B
Bash
Executable File
15 lines
362 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Thin wrapper; the actual implementation lives in scripts/lib/build-linux-binaries.sh
|
|
if [ -z "${BASH_VERSION:-}" ]; then
|
|
exec bash "$0" "$@"
|
|
fi
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
# shellcheck disable=SC1091
|
|
. "${ROOT_DIR}/scripts/lib/build-linux-binaries.sh"
|
|
|
|
build_linux_binaries::main "$@"
|