Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
chore(formatting): convert tabs => spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
m0nhawk committed Apr 23, 2019
1 parent c5921c9 commit ded7567
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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(){
Expand Down

0 comments on commit ded7567

Please sign in to comment.