rename variable $buildpath -> $build_path
Matt S Trout [Tue, 26 Aug 2014 13:51:09 +0000 (13:51 +0000)]
lib/App/SCS/PageSet.pm

index 208772c..f5b9e5e 100644 (file)
@@ -67,16 +67,15 @@ sub _config_files_for {
   my @files = ();
   my @dirs = io->dir($path)->splitdir;
 
-
   shift @dirs;
   pop @dirs;
-  my $buildpath = io('');
+  my $build_path = io('');
 
   foreach my $dir (@dirs) {
-    $buildpath = $buildpath->catdir("/$dir");
+    $build_path = $build_path->catdir("/$dir");
     #/home/.../share/pages/blog.conf etc
 
-    my $file = $self->_top_dir->catfile("$buildpath.conf");
+    my $file = $self->_top_dir->catfile("$build_path.conf");
 
     if (!$file->exists || !$file->file || $file->empty) {
         next;