diff --git a/.gitignore b/.gitignore
index 96447fef9a..93284dcf10 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,11 +22,7 @@ logs/*
*.log
# IDE settings
-
.idea
-.idea/*
-.idea/dictionaries/*
-.idea/cssxfire.xml
*.orig
nbproject/*
diff --git a/config/configuration.dist.yml.php b/config/configuration.dist.yml.php
index 9d406b6eba..c521ed0b89 100644
--- a/config/configuration.dist.yml.php
+++ b/config/configuration.dist.yml.php
@@ -1,5 +1,5 @@
getHelperSet()->get('dialog');
if (!$dialog->askConfirmation(
- $output,
- 'Are you sure you want to dump css/js of all themes?(y/N)',
- false
- )
+ $output,
+ 'Are you sure you want to dump css/js of all themes?(y/N)',
+ false
+ )
) {
return;
}
@@ -89,5 +89,7 @@ class AsseticDumpCommand extends Command
}
}
$output->writeln('Dump finished');
+
+ return true;
}
}