8000 [WCM] Updated the styles of the assets:install command by javiereguiluz · Pull Request #15975 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[WCM] Updated the styles of the assets:install command #15975

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Removed some leftovers
  • Loading branch information
javiereguiluz committed Sep 28, 2015
commit f4bc6b03a0067aab29db51cad41b0b2b31a9f09a
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
}
}

if (false && !$useSymlinks) {
if (!$useSymlinks) {
$output->success('Assets were installed as hard copies.');
} elseif (true || ($useSymlinks && !$symlinksSupported)) {
} elseif ($useSymlinks && !$symlinksSupported) {
$output->warning('Assets were installed as hard copies because your system does not support symlinks.');
} else {
$output->success('Assets were installed as symlinks.');
Expand Down
0