tools/process_config: remove unused unnecessary printing

Too much unnecessary printing that meaningless to non-builder developers

Signed-off-by: chao an <anchao.archer@bytedance.com>
This commit is contained in:
chao an 2025-05-05 17:30:54 +08:00 committed by Xiang Xiao
parent ac583fc585
commit d07bed3e6b

View File

@ -60,10 +60,6 @@ process_file() {
local key_config="$(echo "$line" | cut -d= -f1)="
sed -i.backup "/^$key_config/d" "$output_file"
echo "$line" >> "$output_file"
echo "Appended $line to $output_file"
else
echo "The empty line from defconfig was skipped from adding to $output_file"
fi
fi
done < "$input_file"