diff --git a/modules/compiler_vm/compiler_vm_client.pl b/modules/compiler_vm/compiler_vm_client.pl index 79a0ec70..75624dab 100755 --- a/modules/compiler_vm/compiler_vm_client.pl +++ b/modules/compiler_vm/compiler_vm_client.pl @@ -19,7 +19,7 @@ eval { print "Supported languages are: "; foreach my $lang (sort @languages) { $lang = basename($lang); - next if $lang =~ m/^_/; + next if $lang =~ m/^_|~$/g; $lang =~ s/\.pm$//; print "$comma$lang"; $comma = ', ';