Skip to content

Commit

Permalink
fix: Set correct amount of steps to avoid confusing logs while loadin…
Browse files Browse the repository at this point in the history
…g examples (apache#30606)
  • Loading branch information
deathstrokedarksky authored Oct 15, 2024
1 parent 7132d5a commit d6b2e86
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docker/docker-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ set -e
#
/app/docker/docker-bootstrap.sh

STEP_CNT=4
if [ "$SUPERSET_LOAD_EXAMPLES" = "yes" ]; then
STEP_CNT=4
else
STEP_CNT=3
fi

echo_step() {
cat <<EOF
Expand Down

0 comments on commit d6b2e86

Please sign in to comment.