Skip to content

Commit

Permalink
Remove duplicate spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
apfelbox committed May 2, 2024
1 parent 7116c5f commit 1d25f07
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.1.1 (unreleased)
=====

* (improvement) Remove duplicate space in command.


1.1.0
=====

Expand Down
8 changes: 4 additions & 4 deletions bin/janus
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ function initializeSymfony (SymfonyStyle $io) : int
"scripts" => [
"fix-lint" => [
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer fix --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --no-interaction --ansi",
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --ansi",
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --ansi",
],
"lint" => [
"bin/console lint:yaml config --parse-tags",
"bin/console lint:twig templates",
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --dry-run --ansi",
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --dry-run --ansi",
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer fix --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --dry-run --no-interaction --ansi",
],
"test" => [
Expand Down Expand Up @@ -134,10 +134,10 @@ function initializeLibrary (SymfonyStyle $io) : int
"scripts" => [
"fix-lint" => [
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer fix --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --no-interaction --ansi",
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --ansi",
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --ansi",
],
"lint" => [
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --dry-run --ansi",
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --dry-run --ansi",
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer fix --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --dry-run --no-interaction --ansi",
],
"test" => [
Expand Down

0 comments on commit 1d25f07

Please sign in to comment.