Home | History | Annotate | Download | only in Scripts

Lines Matching refs:die

175     die "--merge is currently only supported for SVN" unless isSVN();
180 system("svn", "update", "-r", $version, $file) == 0 or die "Failed to run svn update -r $version $file.";
207 mkdir $dir or die "Failed to create required directory '$dir' for path '$path'\n";
222 die "'$dir' exists, but is not a directory";
249 open(FILE, $file) or die "Can't open '$file': $!";
264 open FILE, ">", $fullPath or die "Failed to open $fullPath.";
283 die "only literal type is supported now" if ($binaryChunkType ne "literal" || $reverseBinaryChunkType ne "literal");
290 die "$fullPath already exists" if $isFileAddition;
295 die "Original content of $fullPath mismatches" if $originalContents ne $reverseBinaryChunk;
301 open FILE, ">", $fullPath or die "Failed to open $fullPath.";
314 opendir DIR, $dir or die "Could not open '$dir' to list files: $?";
336 die unless $force;
453 system("svn", "copy", $source, $destination) == 0 or die "Failed to svn copy $source $destination.";
455 system("cp", $source, $destination) == 0 or die "Failed to copy $source $destination.";
456 system("git", "add", $destination) == 0 or die "Failed to git add $destination.";
464 system("svn", "add", $path) == 0 or die "Failed to svn add $path.";
466 system("git", "add", $path) == 0 or die "Failed to git add $path.";
476 open SVN, "svn rm --force '$path' |" or die "svn rm --force '$path' failed!";
484 system("git", "rm", "--force", $path) == 0 or die "Failed to git rm --force $path.";