make_stx_mirror_yum_conf: Fix sed statement

The appending to repodir was missing () around the LHS reference and
give the following error:

sed: -e expression #1, char 56: invalid reference \1 on `s' command's RHS

Change-Id: Ib7f21a45a9debf42ae8d91be3e8288c7d0b97463
Signed-off-by: Saul Wold <sgw@linux.intel.com>
This commit is contained in:
Saul Wold 2019-03-14 18:20:25 -07:00
parent 81139a047c
commit adfce3ef13
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ if grep -q '^reposdir=' $CENGN_YUM_CONF; then
# reposdir= already exists, modify it
if [ $RETAIN_REPODIR -eq 1 ]; then
# Append CENGN_REPOS_DIR
sed "s#^reposdir=.*\$#reposdir=\1 $CENGN_REPOS_DIR#" -i $CENGN_YUM_CONF
sed "s#^reposdir=\(.*\)\$#reposdir=\1 $CENGN_REPOS_DIR#" -i $CENGN_YUM_CONF
else
# replace with CENGN_REPOS_DIR
sed "s#^reposdir=.*\$#reposdir=$CENGN_REPOS_DIR#" -i $CENGN_YUM_CONF