classes/buildhistory: indent recently added function consistently

Shell functions use tabs in this file.

(From OE-Core rev: 14eba06baacca25213e35afa7bfd126fc1f5586a)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Eggleton 2015-08-20 11:55:35 +01:00 committed by Richard Purdie
parent ec412d5c76
commit 5d34d3257a
1 changed files with 13 additions and 13 deletions

View File

@ -439,20 +439,20 @@ buildhistory_list_files() {
}
buildhistory_list_pkg_files() {
file_prefix="files-in-"
file_prefix="files-in-"
# Create individual files-in-package for each recipe's package
for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do
pkgname=$(basename ${pkgdir})
outfolder="${BUILDHISTORY_DIR_PACKAGE}/${pkgname}"
outfile="${outfolder}/${file_prefix}${pkgname}.txt"
# Make sure the output folder, exist so we can create the files-in-$pkgname.txt file
if [ ! -d ${outfolder} ] ; then
bbdebug 2 "Folder ${outfolder} does not exist, file ${outfile} not created"
continue
fi
buildhistory_list_files ${pkgdir} ${outfile}
done
# Create individual files-in-package for each recipe's package
for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do
pkgname=$(basename ${pkgdir})
outfolder="${BUILDHISTORY_DIR_PACKAGE}/${pkgname}"
outfile="${outfolder}/${file_prefix}${pkgname}.txt"
# Make sure the output folder, exist so we can create the files-in-$pkgname.txt file
if [ ! -d ${outfolder} ] ; then
bbdebug 2 "Folder ${outfolder} does not exist, file ${outfile} not created"
continue
fi
buildhistory_list_files ${pkgdir} ${outfile}
done
}
buildhistory_get_imageinfo() {