From 493d265f572abd5cd5d116a60f6d95a6e40d26b6 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Thu, 27 Nov 2014 18:13:25 -0500 Subject: [PATCH] Fix indentation (line length) --- functions/fpkg | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/functions/fpkg b/functions/fpkg index bcb1b1a..588fa4a 100644 --- a/functions/fpkg +++ b/functions/fpkg @@ -170,7 +170,8 @@ static_fetch_patches_list() PATCHES_URL=${1} PATCHES_LIST_FILENAME=${2} - # Appending a slash (/) will download the directory content as a file named index.html + # Appending a slash (/) will download the directory content as a file named + # index.html ${WGETCMD} "${PATCHES_URL}/" && # Append log to global log file @@ -221,17 +222,20 @@ update_packages_init() if [ -n "${USE_LFS_PATCHES}" ]; then # Getting list of all patches from LFS server. - rcmd "Fetching LFS patches list" static_fetch_patches_list ${LFS_PATCHES_URL} ${LFS_PATCHES_LIST} + rcmd "Fetching LFS patches list" static_fetch_patches_list \ + ${LFS_PATCHES_URL} ${LFS_PATCHES_LIST} fi if [ -n "${USE_BLFS_PATCHES}" ]; then # Getting list of all patches from BLFS server. - rcmd "Fetching BLFS patches list" static_fetch_patches_list ${BLFS_PATCHES_URL} ${BLFS_PATCHES_LIST} + rcmd "Fetching BLFS patches list" static_fetch_patches_list \ + ${BLFS_PATCHES_URL} ${BLFS_PATCHES_LIST} fi if [ -n "${USE_CLFS_PATCHES}" ]; then # Getting list of all patches from CLFS server. - rcmd "Fetching CLFS patches list" static_fetch_patches_list ${CLFS_PATCHES_URL} ${CLFS_PATCHES_LIST} + rcmd "Fetching CLFS patches list" static_fetch_patches_list \ + ${CLFS_PATCHES_URL} ${CLFS_PATCHES_LIST} fi } -- 2.20.1