From 1e7bd80c120ee1fcb41a59cdc378e649d587a382 Mon Sep 17 00:00:00 2001 From: fr33domlover <fr33domlover@riseup.net> Date: Wed, 7 Jan 2015 04:30:34 +0200 Subject: [PATCH] lighttpd: fix sed usage to make the helper not complain --- helpers/make-lighttpd | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/helpers/make-lighttpd b/helpers/make-lighttpd index 9613be50..36b222e5 100644 --- a/helpers/make-lighttpd +++ b/helpers/make-lighttpd @@ -19,10 +19,11 @@ VERSION=1 . ./config -sed -e 's~Ubuntu\sBug\sTracking\sSystem~upstream bug tracker~g' \ - -e 's~Ubuntu~Trisquel GNU/Linux~g' \ - -e 's~packages\.ubuntu\.com~packages.trisquel.info~g' \ - -i debian/index.html +HTML_FILE=debian/index.html + +sed -i 's~Ubuntu\sBug\sTracking\sSystem~upstream bug tracker~g' $HTML_FILE +sed -i 's~Ubuntu~Trisquel GNU/Linux~g' $HTML_FILE +sed -i 's~packages\.ubuntu\.com~packages.trisquel.info~g' $HTML_FILE changelog "Fix Ubuntu references in the default index.html" -- GitLab