mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-19 00:43:07 +02:00
Tests - conversion script was failing due to binaries matching
This commit is contained in:
parent
c07d74574d
commit
9cc9e19757
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
printf "C++: %5d\n" $(ls *.t.cpp | wc -l)
|
||||
printf "Python: %5d\n" $(head -n1 *.t | grep '\bpython' | wc -l)
|
||||
printf "Perl: %5d\n" $(head -n1 *.t | grep '\bperl\b' | wc -l)
|
||||
printf "Python: %5d\n" $(head -n1 *.t | grep -a '\bpython' | wc -l)
|
||||
printf "Perl: %5d\n" $(head -n1 *.t | grep -a '\bperl\b' | wc -l)
|
||||
if [ "$1" = "-v" ]; then
|
||||
echo -n "Perl left: "; echo $(grep -l '^#\! \?/usr/bin/env perl\b' *.t)
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue