We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 089882a commit 5a88964Copy full SHA for 5a88964
scripts/quickstart.sh
@@ -52,7 +52,9 @@ typewriter() {
52
# Function to show ASCII art with animation
53
show_ascii_art() {
54
# Skip clear in CI environments (no proper terminal)
55
- [ -z "${CI:-}" ] && clear || true
+ if [ -z "${CI:-}" ]; then
56
+ clear || true
57
+ fi
58
echo
59
60
print_color "$CYAN" " ██╗ ██╗██╗ ██╗ ███╗ ███╗"
0 commit comments