Skip to content

Commit 0b1dd4c

Browse files
authored
Fix jq comment line continuation in versions.sh (#754)
./versions.sh was failing with: jq: error: syntax error, unexpected INVALID_CHARACTER, expecting '|' or ',' or ')' at <top-level>, line 24, column 8 Keep the /o\ flourish in the jq comment, but avoid ending the line with a bare backslash so jq does not treat the next line as a continuation.
1 parent 56e4434 commit 0b1dd4c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ shell="$(
2222
"windows.*" # windows, windows_x86_64, windows_x86_64-2012plus, etc
2323
] | join("|")) + ")$")
2424
and (
25-
# a few things old enough we do not want anything to do with them /o\
25+
# a few things old enough we do not want anything to do with them /o\.
2626
test("^(" + ([
2727
"debian[89].*",
2828
"ubuntu1[0-9].*"

0 commit comments

Comments
 (0)