diff --git a/entrypoint.sh b/entrypoint.sh index 1e580ea..e0fb278 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,23 +4,23 @@ set -ex set -o pipefail go_to_build_dir() { - if [ ! -z $SUBDIR ]; then - cd $SUBDIR - fi + if [ ! -z $SUBDIR ]; then + cd $SUBDIR + fi } check_if_setup_file_exists() { - if [ ! -f setup.py ]; then - echo "setup.py must exist in the directory that is being packaged and published." - exit 1 - fi + if [ ! -f setup.py ]; then + echo "setup.py must exist in the directory that is being packaged and published." + exit 1 + fi } check_if_meta_yaml_file_exists() { if [ ! -f meta.yaml ]; then - echo "meta.yaml must exist in the directory that is being packaged and published." - exit 1 - fi + echo "meta.yaml must exist in the directory that is being packaged and published." + exit 1 + fi } upload_package(){