Skip to content

Commit

Permalink
Fixes #2493
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed May 15, 2019
1 parent c8f6e7b commit ccff511
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

1. [](#improved)
* Added **page blueprints** to `YamlLinter` CLI and Admin reports

* Removed `Gitter` and `Slack` [#2502](https://github.com/getgrav/grav/issues/2502)
* Optimizations for Plugin/Theme loading
1. [](#bugfix)
* Force question to install demo content in theme update [#2493](https://github.com/getgrav/grav/issues/2493)

# v1.6.9
## 05/09/2019

Expand Down
2 changes: 1 addition & 1 deletion system/src/Grav/Console/Gpm/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ private function installDemoContent($package)
$helper = $this->getHelper('question');
$question = new ConfirmationQuestion('Do you wish to install this demo content? [y|N] ', false);

$answer = $this->all_yes ? true : $helper->ask($this->input, $this->output, $question);
$answer = $helper->ask($this->input, $this->output, $question);

if (!$answer) {
$this->output->writeln(" '- <red>Skipped!</red> ");
Expand Down

0 comments on commit ccff511

Please sign in to comment.