File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,16 @@ while read -r line; do
42
42
if [[ $in_extra_dist ]]; then
43
43
if [[ $line != $' \t ' * ]]; then
44
44
if [[ ! $added ]]; then
45
- echo -e " \ttest_$file .py \\ "
45
+ echo -e " \ttest_$file .py"
46
46
added=true
47
47
fi
48
48
in_extra_dist=
49
- elif [[ ! $added && $line > $' \t ' test_$file .py ]]; then
50
- echo -e " \ttest_$file .py \\ "
51
- added=true
49
+ else
50
+ [[ $line == * \\ ]] || line=" $line \\ "
51
+ if [[ ! $added && $line > $' \t ' test_$file .py ]]; then
52
+ echo -e " \ttest_$file .py \\ "
53
+ added=true
54
+ fi
52
55
fi
53
56
echo " $line "
54
57
else
Original file line number Diff line number Diff line change @@ -659,6 +659,6 @@ EXTRA_DIST = \
659
659
test_yum_arch.py \
660
660
test_yum.py \
661
661
test_zopflipng.py \
662
- test_zopfli.py \
662
+ test_zopfli.py
663
663
664
664
all :
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ EXTRA_DIST = \
10
10
test_unit_ip_addresses.py \
11
11
test_unit_parse_help.py \
12
12
test_unit_parse_usage.py \
13
- test_unit_tilde.py \
13
+ test_unit_tilde.py
14
14
15
15
all :
You can’t perform that action at this time.
0 commit comments