Skip to content

Commit

Permalink
Fix a couple of typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
kaby76 committed Jan 17, 2025
1 parent 77d711f commit 31bfc96
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions _scripts/what-to-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ do
if [ -f desc.xml ]
then
gtargets=`dotnet trxml2 desc.xml | fgrep -e '/desc/targets' | awk -F = '{print $2}' | sed 's/;/ /g'`
if [ "$gtargets" == "*" ]; then $gtargets="Antlr4ng Cpp CSharp Dart Go Java JavaScript Python3 TypeScript"; fi
if [ "$gtargets" == "*" ]; then gtargets="Antlr4ng Cpp CSharp Dart Go Java JavaScript Python3 TypeScript"; fi
for t in $gtargets
do
targets[$t]=`expr ${targets[$t]} + 1`
Expand All @@ -45,8 +45,7 @@ do
done

ttargets=""
# remove temporarily TODO add back: "TypeScript"
for t in "Cpp" "CSharp" "Dart" "Go" "Java" "JavaScript" "PHP" "Python3" "TypeScript"
for t in "Antlr4ng" "Cpp" "CSharp" "Dart" "Go" "Java" "JavaScript" "Python3" "TypeScript"
do
if [ ${targets[$t]} -ne 0 ]
then
Expand Down

0 comments on commit 31bfc96

Please sign in to comment.