databuild/runtime/configure_wrapper.sh
2025-04-17 15:53:55 -07:00

9 lines
162 B
Bash
Executable file

#!/bin/bash
set -e
# The first argument is the path to the configure binary
CONFIGURE_BINARY="$1"
shift
# Run the configuration
exec "${CONFIGURE_BINARY}" "$@"