projects
/
genkernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f136ad
)
Fix mis-indentation
author
Sebastian Pipping
<sebastian@pipping.org>
Sun, 9 Jan 2011 18:11:12 +0000
(19:11 +0100)
committer
Sebastian Pipping
<sebastian@pipping.org>
Sun, 9 Jan 2011 18:26:53 +0000
(19:26 +0100)
gen_funcs.sh
patch
|
blob
|
history
diff --git
a/gen_funcs.sh
b/gen_funcs.sh
index 074ae0daeb50e3e0888046884929878fd495a984..2a87b1474bd6f1330e5b5ab085c7337b79a799ae 100755
(executable)
--- a/
gen_funcs.sh
+++ b/
gen_funcs.sh
@@
-265,13
+265,13
@@
clear_tmpdir()
{
if ! isTrue ${CMD_NOINSTALL}
then
- TMPDIR_CONTENTS=`ls ${TMPDIR}`
- print_info 1 "Removing tmp dir contents"
- for i in ${TMPDIR_CONTENTS}
- do
- print_info 1 " >> removing ${i}"
- rm ${TMPDIR}/${i}
- done
+
TMPDIR_CONTENTS=`ls ${TMPDIR}`
+
print_info 1 "Removing tmp dir contents"
+
for i in ${TMPDIR_CONTENTS}
+
do
+
print_info 1 " >> removing ${i}"
+
rm ${TMPDIR}/${i}
+
done
fi
}