From ded75670b3f0b0e99633284e65b48a0a84aa23c6 Mon Sep 17 00:00:00 2001 From: Andrew Prokhorenkov Date: Tue, 23 Apr 2019 00:19:08 -0500 Subject: [PATCH] chore(formatting): convert tabs => spaces --- entrypoint.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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(){