Skip to content

Commit

Permalink
app-benchmarks/phoronix-test-suite: fix my miskate sed: -e expression #2
Browse files Browse the repository at this point in the history
, char 36: unterminated s command

Signed-off-by: Vitaly Zdanevich <[email protected]>
  • Loading branch information
vitaly-zdanevich committed Jul 19, 2024
1 parent 861b496 commit a1fe843
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ get_optional_dependencies()
local package_close_regexp="</Package>" \
package_generic_name_regexp="^.*<GenericName>|</GenericName>.*$" \
package_names_regexp="^.*<PackageName>|</PackageName>.*$"
reg="s@(^[[:blank:]]+|[[:blank:]]+$)$@@g"
reg='s@(^[[:blank:]]+|[[:blank:]]+$)$@@g'

line=0
while IFS=$'\n' read -r optional_packages_xmlline; do
Expand Down

0 comments on commit a1fe843

Please sign in to comment.