commit bf6a9b6a1affed1002714e21d5074b1ca38100a8 parent e9c3750adc61a6606f174eea4016c38303767a92 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Thu, 5 Oct 2017 09:56:29 +0200 Fix the bash script Diffstat:
| M | solstice.sh | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/solstice.sh b/solstice.sh @@ -252,8 +252,8 @@ for((i=0; i<${#man_pages[@]}; ++i)); do sed -i 's/gpl\.html\.">\(.*\).<\/A>/gpl.html">\1<\/A>./g' $output fi - # Fix the man2html issues that translate the ' char in cq - sed -i "s/cq\(\a\)\>/'\1/g" $output + # Fix the man2html issues that translates the ' char in cq + sed -i "s/cq\([a-z]\)\>/'\1/g" $output print_footer >> $output done