mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-10 22:41:53 +08:00
11 lines
212 B
Bash
11 lines
212 B
Bash
#!/usr/bin/env bash
|
|
|
|
BUILD_DIR=$1
|
|
|
|
# Exit early if app is clearly not Python.
|
|
if [ ! -f $BUILD_DIR/requirements.txt ] && [ ! -f $BUILD_DIR/setup.py ] && [ ! -f $BUILD_DIR/Pipfile ]; then
|
|
exit 1
|
|
fi
|
|
|
|
echo Python
|