Commit d5d00294 authored by Andrew Dunstan's avatar Andrew Dunstan

Allow MSVC's contribcheck and modulescheck to run independently.

These require a temp install to have been done, so we now make sure it
is done before proceeding.

Michael Paquier.
parent fb174687
...@@ -290,6 +290,7 @@ sub subdircheck ...@@ -290,6 +290,7 @@ sub subdircheck
sub contribcheck sub contribcheck
{ {
InstallTemp();
chdir "$topdir/contrib"; chdir "$topdir/contrib";
foreach my $module (glob("*")) foreach my $module (glob("*"))
{ {
...@@ -309,6 +310,7 @@ sub contribcheck ...@@ -309,6 +310,7 @@ sub contribcheck
sub modulescheck sub modulescheck
{ {
InstallTemp();
chdir "$topdir/src/test/modules"; chdir "$topdir/src/test/modules";
foreach my $module (glob("*")) foreach my $module (glob("*"))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment