Update 'init/entrypoint.sh'
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danny Bessems 2020-02-17 15:16:26 +00:00
parent 8b4e0de717
commit 5bdbfe00b8
1 changed files with 1 additions and 7 deletions

View File

@ -12,12 +12,6 @@ git pull origin $REMOTE_BRANCH
# Create target folder and move files # Create target folder and move files
mkdir -p $TARGET_DIR mkdir -p $TARGET_DIR
if [ -n $FLATTEN_FOLDER ]; then mv `echo $SPARSE_CHECKOUT` $TARGET_DIR
# Flatten folder structure
mv ./*/**/* $TARGET_DIR
else
# Retain folder structure
mv ./* $TARGET_DIR
fi
exec "$@" exec "$@"