Skip to content
This repository has been archived by the owner on Dec 27, 2018. It is now read-only.

Commit

Permalink
Fix init method. (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudLigny committed Nov 14, 2018
1 parent 5713e1b commit 003865c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.10.0
2.10.1
6 changes: 2 additions & 4 deletions src/Step/ImportConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@ class ImportConfig extends AbstractStep
*/
public function init($options)
{
if (!$this->config->hasTheme()) {
$this->process = false;
if ($this->config->hasTheme()) {
$this->process = true;
}

$this->process = true;
}

/**
Expand Down

0 comments on commit 003865c

Please sign in to comment.