Skip to content

Commit adabe5e

Browse files
committed
<feature> Add more info about public folder installed
1 parent 02f41ae commit adabe5e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Command/InitializeCommand.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -157,17 +157,17 @@ protected function execute(InputInterface $input, OutputInterface $output)
157157
if($input->getOption('relative'))
158158
{
159159
$expectedMethod = self::METHOD_RELATIVE_SYMLINK;
160-
$io->text('Trying to install theme assets as <info>relative symbolic links</info>.');
160+
$io->text('Trying to install theme assets as <info>relative symbolic links</info> in ' . $folders->public);
161161
}
162162
elseif($input->getOption('symlink'))
163163
{
164164
$expectedMethod = self::METHOD_ABSOLUTE_SYMLINK;
165-
$io->text('Trying to install theme assets as <info>absolute symbolic links</info>.');
165+
$io->text('Trying to install theme assets as <info>absolute symbolic links</info> in ' . $folders->public);
166166
}
167167
else
168168
{
169169
$expectedMethod = self::METHOD_COPY;
170-
$io->text('Installing theme assets as <info>hard copies</info>.');
170+
$io->text('Installing theme assets as <info>hard copies</info> in ' . $folders->public);
171171
}
172172

173173
$fs->mkdir($folders->public . '/theme');

0 commit comments

Comments
 (0)