Lines Matching refs:Spec
38 use File::Spec;
197 return system("cd $dir && git rev-parse > " . File::Spec->devnull() . " 2>&1") == 0;
251 return -d File::Spec->catdir($dir, ".svn");
287 return File::Spec->abs2rel($previousDirectory, $newDirectory);
307 open INFO, "svn info '$path' 2> " . File::Spec->devnull() . " |" or die;
334 $path = File::Spec->catdir($parent, $path);
337 return File::Spec->rel2abs($last);
376 my $relativePath = File::Spec->abs2rel($file);
431 $file = File::Spec->canonpath($file);
435 foreach my $dir (File::Spec->splitdir($file)) {
442 return ($#dirs >= 0) ? File::Spec->catdir(@dirs) : ".";
498 my $normalizedFullPath = File::Spec->catdir(File::Spec->splitdir($fullPath));
502 my $normalizedStatPath = File::Spec->catdir(File::Spec->splitdir(substr($_, 7)));
1666 … open(PATCH, "| patch --force --fuzz=3 --binary $fileNewer > " . File::Spec->devnull()) or die $!;