diff options
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 79eeca98e..22ec34a95 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -690,7 +690,7 @@ sub _create_files { my $info = $files{$file}; if ($info->{overwrite} or not -f $file) { print "Creating $file...\n"; - my $fh = IO::File->new( $file, O_WRONLY | O_CREAT, $info->{perms} ) + my $fh = IO::File->new( $file, O_WRONLY | O_CREAT | O_TRUNC, $info->{perms} ) or die "unable to write $file: $!"; my $contents = $info->{contents}; if (defined $contents && ref($contents) eq 'CODE') { |