Skip to content

Commit 5a88964

Browse files
committed
fix quickstart pre-commit error
Signed-off-by: JaredforReal <[email protected]>
1 parent 089882a commit 5a88964

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/quickstart.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ typewriter() {
5252
# Function to show ASCII art with animation
5353
show_ascii_art() {
5454
# Skip clear in CI environments (no proper terminal)
55-
[ -z "${CI:-}" ] && clear || true
55+
if [ -z "${CI:-}" ]; then
56+
clear || true
57+
fi
5658
echo
5759
echo
5860
print_color "$CYAN" " ██╗ ██╗██╗ ██╗ ███╗ ███╗"

0 commit comments

Comments
 (0)