From: Marcel Telka Date: Fri, 17 May 2024 16:57:46 +0000 (+0200) Subject: t/t9001-send-email.sh: sed - remove the i flag for s X-Git-Tag: v2.46.0-rc0~109^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bac28a942a08d8812a89649c1198ae7abd539ec1;p=thirdparty%2Fgit.git t/t9001-send-email.sh: sed - remove the i flag for s The 'i' flag for the 's' command of sed is not specified by POSIX so it is not portable. Replace its usage by different and portable syntax. Signed-off-by: Marcel Telka Signed-off-by: Junio C Hamano --- diff --git a/t/t9001-send-email.sh b/t/t9001-send-email.sh index 5a771000c9..58699f8e4e 100755 --- a/t/t9001-send-email.sh +++ b/t/t9001-send-email.sh @@ -2526,7 +2526,7 @@ test_expect_success $PREREQ 'test forbidSendmailVariables behavior override' ' test_expect_success $PREREQ '--compose handles lowercase headers' ' write_script fake-editor <<-\EOF && - sed "s/^From:.*/from: edited-from@example.com/i" "$1" >"$1.tmp" && + sed "s/^[Ff][Rr][Oo][Mm]:.*/from: edited-from@example.com/" "$1" >"$1.tmp" && mv "$1.tmp" "$1" EOF clean_fake_sendmail &&