From: Hugo Villeneuve Date: Thu, 27 Nov 2014 23:13:25 +0000 (-0500) Subject: Fix indentation (line length) X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=493d265f572abd5cd5d116a60f6d95a6e40d26b6;p=hvlinux.git Fix indentation (line length) --- 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 }