Преглед изворни кода

synapse workers-doc-to-yaml script: compatibility++ with non-gnu awk

pull/456/head
Marcel Partap пре 5 година
родитељ
комит
b6b95fe742
1 измењених фајлова са 3 додато и 3 уклоњено
  1. +3
    -3
      roles/matrix-synapse/files/workers-doc-to-yaml.awk

+ 3
- 3
roles/matrix-synapse/files/workers-doc-to-yaml.awk Прегледај датотеку

@@ -55,7 +55,7 @@ enable_parsing {
workers = (workers ? workers "\n" : "") " - " worker_type

# loop through the lines (2 - number of fields in record)
for (i = 1; i < NF + 1; i++) {
for (i = 2; i < NF + 1; i++) {
# copy line for gsub replacements
line = $i

@@ -106,7 +106,7 @@ enable_parsing {
}

# white-space only line?
} else if (line ~ /^\w*$/) {
} else if (line ~ /^ *$/) {

if (i > 3 && i < NF) {
# print white-space lines unless 1st or last line in section
@@ -120,7 +120,7 @@ enable_parsing {
worker_stanza_append(" # " line linefeed)

# and take note of words hinting at additional conditions to be met
if (line ~ /\<[Ii]f\>|\<[Ff]or\>/) {
if (line ~ /(^| )[Ii]f |(^| )[Ff]or /) {
endpoints_seem_conditional = 1
}
}


Loading…
Откажи
Сачувај