Merge branch 'master' of git://github.com/thelia/thelia

* 'master' of git://github.com/thelia/thelia:
  Fixed typo
This commit is contained in:
gmorel
2013-11-19 21:16:04 +01:00

View File

@@ -52,7 +52,7 @@ class CacheClear extends ContainerAwareCommand
"without-assets", "without-assets",
null, null,
InputOption::VALUE_NONE, InputOption::VALUE_NONE,
"remove cache assets" "do not clear the assets cache in the web space"
) )
; ;
} }
@@ -82,17 +82,17 @@ class CacheClear extends ContainerAwareCommand
} catch (\UnexpectedValueException $e) { } catch (\UnexpectedValueException $e) {
// throws same exception code for does not exist and permission denied ... // throws same exception code for does not exist and permission denied ...
if (!file_exists($dir)) { if (!file_exists($dir)) {
$output->writeln(sprintf("<info>%s cache dir already clear</info>", $dir)); $output->writeln(sprintf("<info>%s cache dir already cleared</info>", $dir));
return; return;
} }
throw $e; throw $e;
} catch (IOException $e) { } catch (IOException $e) {
$output->writeln(sprintf("Error during clearing cache : %s", $e->getMessage())); $output->writeln(sprintf("Error during clearing of cache : %s", $e->getMessage()));
} }
$output->writeln(sprintf("<info>%s cache dir cleared successfully</info>", $dir)); $output->writeln(sprintf("<info>%s cache directory cleared successfully</info>", $dir));
} }
} }