We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28cf946 commit 1860672Copy full SHA for 1860672
pushToGitHub.pl
@@ -31,12 +31,13 @@
31
@files = grep {!m(/vivado/pins/)} @files;
32
@files = grep {!m(/logs/)} @files;
33
@files = grep {!m(/build/)} @files;
34
-say STDERR "AAAA ", dump(\@files);
+ @files = grep {!m(/z/)} @files;
35
+#say STDERR "AAAA ", dump(\@files); exit;
36
37
if (1) # Remove most of the verilog except the reports
38
{my @f = @files; @files = ();
39
for my $f(@f)
- {next if $f =~ m(verilog) and $f !~ m(/(reports|timing_route)|png\Z/);
40
+ {next if $f =~ m(/verilog/) and $f !~ m(/(reports|timing_route)|png\Z/);
41
push @files, $f;
42
}
43
0 commit comments