diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/clear-memcached.pl | 9 | ||||
-rwxr-xr-x | contrib/clear-templates.pl | 7 |
2 files changed, 8 insertions, 8 deletions
diff --git a/contrib/clear-memcached.pl b/contrib/clear-memcached.pl index 58157770a..718fc0e98 100755 --- a/contrib/clear-memcached.pl +++ b/contrib/clear-memcached.pl @@ -17,8 +17,9 @@ use Bugzilla::Constants; Bugzilla->usage_mode(USAGE_MODE_CMDLINE); if (Bugzilla->memcached->{memcached}) { - Bugzilla->memcached->clear_all(); - print "memcached cleared\n"; -} else { - print "memcached is not enabled\n"; + Bugzilla->memcached->clear_all(); + print "memcached cleared\n"; +} +else { + print "memcached is not enabled\n"; } diff --git a/contrib/clear-templates.pl b/contrib/clear-templates.pl index 5954e71ad..5569744f0 100755 --- a/contrib/clear-templates.pl +++ b/contrib/clear-templates.pl @@ -22,17 +22,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) |