From 23cd1d95e9109a4dca9fd4f573f2a13975c64330 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Fri, 29 Dec 2023 14:51:37 -0600 Subject: [PATCH] website: fix `cub` test script The `CUB` V2 test script has a trailing echo which pushes the cursor down one line, making the expected output incorrect. Remove the `echo` command so the cursor position is as shown. --- website/app/vt/cub/page.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/website/app/vt/cub/page.mdx b/website/app/vt/cub/page.mdx index 4a29d992b..c1e67c4b6 100644 --- a/website/app/vt/cub/page.mdx +++ b/website/app/vt/cub/page.mdx @@ -66,7 +66,6 @@ printf "\033[${cols}G" # move to last column printf "A" # set pending wrap state printf "\033[D" # move back one printf "XYZ" -echo ``` ```