From 8682be1ab7fdb99940437bbedc27146664556d48 Mon Sep 17 00:00:00 2001 From: Andrey Albershteyn Date: Thu, 20 Feb 2025 18:56:01 +0100 Subject: [PATCH] libxfs-apply: fix stgit detection stgit top doesn't seem to return 0 if stack is created for a branch but no patches applied. The code is 2 as when no 'stgit init' was run. Replace top with log which always has at least "initialize" action. Stacked Git 2.4.12 Reviewed-by: Darrick J. Wong Signed-off-by: Andrey Albershteyn --- tools/libxfs-apply | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxfs-apply b/tools/libxfs-apply index 097a695f9..480b862d0 100755 --- a/tools/libxfs-apply +++ b/tools/libxfs-apply @@ -100,7 +100,7 @@ if [ $? -eq 0 ]; then fi # Are we using stgit? This works even if no patch is applied. -stg top &> /dev/null +stg log &> /dev/null if [ $? -eq 0 ]; then STGIT=1 fi -- 2.47.2