
The previous Makefile only worked on OS X. The dynamically generated Makefile (from `Makefile.in`) should now work on multiple platforms (tested on OS X and Ubuntu).
10 lines
126 B
Bash
Executable File
10 lines
126 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [ -n "$RBENV_NATIVE_EXT" ]; then
|
|
src/configure
|
|
make -C src
|
|
fi
|
|
|
|
exec bats ${CI:+--tap} test
|