mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
16 lines
270 B
Bash
Executable File
16 lines
270 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ ! "$STACK" ]]; then
|
|
echo '$STACK must be set! (heroku-16 | cedar-14)'
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "$STACK" == "cedar-14" ]]; then
|
|
make test-cedar-14
|
|
exit $?
|
|
fi
|
|
|
|
if [[ "$STACK" == "heroku-16" ]]; then
|
|
make test-heroku-16
|
|
exit $?
|
|
fi |