From d3eb4f7a41f0968872e3dfad8ebaa236fe00334f Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 27 Dec 2022 16:54:57 -0500 Subject: [PATCH] Base: Remove UserspaceEmulator from the list of manual pages to verify This is used during CI to verify that some manual pages are up to date with the output of the corresponding program's --help option. UE does not exist on x86_64 yet, so we cannot run `UE --help`. Remove it from this list for now. --- Base/root/generate_manpages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Base/root/generate_manpages.sh b/Base/root/generate_manpages.sh index a3e33bdf811..a6a857dd231 100755 --- a/Base/root/generate_manpages.sh +++ b/Base/root/generate_manpages.sh @@ -20,8 +20,8 @@ exit_for_error() rm -rf generated_manpages 2> "$ERROR_FILE" || exit_for_error +# FIXME: Add `UserspaceEmulator 1` back to this list after UE is functional on x86_64. for i in ( \ - (UserspaceEmulator 1) \ (config 1) \ (fortune 1) \ (grep 1) \