We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 562099c commit 850fbe5Copy full SHA for 850fbe5
1 file changed
integration-tests/run.sh
@@ -23,7 +23,7 @@ normalize_config() {
23
# For YAML files, use yq to sort
24
yq e '.' "$file" | sort
25
;;
26
- rc|conf|ini|xml)
+ rc|conf|ini)
27
# For other config files, sort values after '=' and keep other lines
28
awk -F'=' '
29
/^[^#].*=.*,/ {
@@ -49,6 +49,10 @@ normalize_config() {
49
{ print }
50
' "$file" | sort
51
52
+ xml)
53
+ # For XML files, do not sort, just output as-is
54
+ cat "$file"
55
+ ;;
56
*)
57
# For other files, just sort
58
sort "$file"
0 commit comments