summaryrefslogtreecommitdiffstats
path: root/scripts/clear-templates.pl
diff options
context:
space:
mode:
authorPerl Tidy <perltidy@bugzilla.org>2018-12-05 21:38:52 +0100
committerDylan William Hardison <dylan@hardison.net>2018-12-05 23:49:08 +0100
commit8ec8da0491ad89604700b3e29a227966f6d84ba1 (patch)
tree9d270f173330ca19700e0ba9f2ee931300646de1 /scripts/clear-templates.pl
parenta7bb5a65b71644d9efce5fed783ed545b9336548 (diff)
downloadbugzilla-8ec8da0491ad89604700b3e29a227966f6d84ba1.tar.gz
bugzilla-8ec8da0491ad89604700b3e29a227966f6d84ba1.tar.xz
no bug - reformat all the code using the new perltidy rules
Diffstat (limited to 'scripts/clear-templates.pl')
-rwxr-xr-xscripts/clear-templates.pl8
1 files changed, 3 insertions, 5 deletions
diff --git a/scripts/clear-templates.pl b/scripts/clear-templates.pl
index 9deb2e47d..cab854abb 100755
--- a/scripts/clear-templates.pl
+++ b/scripts/clear-templates.pl
@@ -12,7 +12,6 @@ use warnings;
use lib qw(. lib local/lib/perl5);
-
use Bugzilla;
use Bugzilla::Constants;
use Bugzilla::Install::Filesystem qw(fix_dir_permissions);
@@ -24,17 +23,16 @@ $| = 1;
# rename the current directory and create a new empty one
# the templates will lazy-compile on demand
-my $path = bz_locations()->{'template_cache'};
+my $path = bz_locations()->{'template_cache'};
my $delete_path = "$path.deleteme";
print "clearing $path\n";
rmtree("$delete_path") if -e "$delete_path";
rename($path, $delete_path)
- or die "renaming '$path' to '$delete_path' failed: $!\n";
+ or die "renaming '$path' to '$delete_path' failed: $!\n";
-mkpath($path)
- or die "creating '$path' failed: $!\n";
+mkpath($path) or die "creating '$path' failed: $!\n";
fix_dir_permissions($path);
# delete the temp directory (it's ok if this fails)