From f17b5c29f3cfe5b665b3d91cfd0c185d94d21fb0 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Thu, 19 Apr 2018 16:33:44 +0100 Subject: [PATCH] scripts/lib: Fix whitespace Make whitespace consistent. Signed-off-by: James O. D. Hunt --- scripts/lib.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/lib.sh b/scripts/lib.sh index 02aadfce41..7405cb68c8 100644 --- a/scripts/lib.sh +++ b/scripts/lib.sh @@ -62,7 +62,7 @@ reposdir=/root/mash retries=5 EOF if [ "$BASE_URL" != "" ]; then - cat >> "${DNF_CONF}" << EOF + cat >> "${DNF_CONF}" << EOF [base] name=${OS_NAME}-${OS_VERSION} ${REPO_NAME} @@ -71,7 +71,7 @@ baseurl=${BASE_URL} enabled=1 EOF elif [ "$MIRROR_LIST" != "" ]; then - cat >> "${DNF_CONF}" << EOF + cat >> "${DNF_CONF}" << EOF [base] name=${OS_NAME}-${OS_VERSION} ${REPO_NAME} @@ -81,13 +81,12 @@ EOF fi if [ "$GPG_KEY_FILE" != "" ]; then - cat >> "${DNF_CONF}" << EOF + cat >> "${DNF_CONF}" << EOF gpgcheck=1 gpgkey=file://${CONFIG_DIR}/${GPG_KEY_FILE} EOF fi - } build_rootfs()