Fix silly conditional issue by removing the conditional completely. It

was an accidental dup.
This commit is contained in:
cltbld 2005-03-09 22:06:46 +00:00
parent 255e0084f1
commit fd0b9de018

View File

@ -378,7 +378,7 @@ sub packit {
if ( scalar(@xforms_xpi) gt 0 ) {
my $xforms_xpi_files = join(' ', @xforms_xpi);
TinderUtils::run_shell_command "mkdir -p $stagedir/linux-xpi/" if ( ! -e "$stagedir/linux-xpi/" );
TinderUtils::run_shell_command "cp $xforms_xpi_files $stagedir/linux-xpi/" if ( ! -e "$stagedir/linux-xpi/" );
TinderUtils::run_shell_command "cp $xforms_xpi_files $stagedir/linux-xpi/";
}
}
}