convert indents to comments
This commit is contained in:
parent
92cb735bb7
commit
0f86778d79
10
urchin
10
urchin
@ -31,8 +31,14 @@ recurse() {
|
||||
if [ -d "$potential_test" ]
|
||||
then
|
||||
(
|
||||
indent $indent_level
|
||||
echo " ${potential_test}"
|
||||
if $tap_format; then
|
||||
indent $indent_level | sed 's/ /#/g'
|
||||
echo "# ${potential_test}"
|
||||
else
|
||||
indent $indent_level
|
||||
echo " ${potential_test}"
|
||||
fi
|
||||
|
||||
cd -- "$potential_test"
|
||||
[ -f setup_dir ] && [ -x setup_dir ] && ./setup_dir >> "$stdout_file"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user