From 90dffe2f0b97d1292e15ba894faf71e488f6d0b8 Mon Sep 17 00:00:00 2001 From: Ziyong Cheong Date: Fri, 10 Jul 2026 10:49:22 +0200 Subject: [PATCH] fix regression introduced by 45ca77f88c20f26042781f98009a6291a861a3cc --- script/bake_in_features.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bake_in_features.sh b/script/bake_in_features.sh index 8e76ac8b43..6e4056f265 100755 --- a/script/bake_in_features.sh +++ b/script/bake_in_features.sh @@ -22,7 +22,7 @@ for feat in "$@"; do done # code block is one line above name declaration -linenum=$(sed -n "/name = calt;/=" "${glyphs_file}") +linenum=$(sed -n "/tag = calt;/=" "${glyphs_file}") linenum=$((linenum - 1)) # replace end of line (";) with code on specified line number sed -i -e "${linenum}s@\";\$@\n${code_blocks[*]}\";@" "${glyphs_file}"