Home | History | Annotate | Download | only in Scripts

Lines Matching refs:die

137     open INFO, "svn info '$infoPath' |" or die;
151 open PROPGET, "svn propget svn:mime-type $args '$file' |" or die;
181 open INFO, "svn info '$file' |" or die;
206 open DIFF, "svn diff --diff-cmd diff -x -uaNp '$file' |" or die;
223 open STAT, "svn stat '$statPath' |" or die;
315 open BINARY, $path or die;
348 die "can't handle absolute paths like \"$file\"\n" if File::Spec->file_name_is_absolute($file);
349 die "can't handle empty string path\n" if $file eq "";
350 die "can't handle path with single quote in the name like \"$file\"\n" if $file =~ /'/; # ' (keep Xcode syntax highlighting happy)
356 die "can't handle paths with .. like \"$untouchedFile\"\n" if $file =~ m|/\.\./|;