From a5d21335b5ca9ba603a6bd6a05d590d02c183ca2 Mon Sep 17 00:00:00 2001 From: Lucas Duarte Date: Wed, 14 Aug 2019 14:32:12 +0100 Subject: [PATCH] Update scripts --- src/Commands/VsCode/VsCodeConfig.php | 3 ++- src/Commands/VsCode/VsCodeFont.php | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Commands/VsCode/VsCodeConfig.php b/src/Commands/VsCode/VsCodeConfig.php index 16ac930..75d2fc9 100644 --- a/src/Commands/VsCode/VsCodeConfig.php +++ b/src/Commands/VsCode/VsCodeConfig.php @@ -5,7 +5,6 @@ use Lwwcas\Holo\Traits\Runable; use Symfony\Component\Process\Process; use Symfony\Component\Console\Command\Command; -use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; @@ -39,6 +38,8 @@ protected function execute(InputInterface $input, OutputInterface $output) $process = new Process('cp ~/.holo/.vscode/settings.json ~/.config/Code/User/settings.json'); $this->runProcess($process, $output); + $output->writeln("Visual Studio Configuration is Done. ✔"); + } } diff --git a/src/Commands/VsCode/VsCodeFont.php b/src/Commands/VsCode/VsCodeFont.php index 31456b3..cf42b19 100644 --- a/src/Commands/VsCode/VsCodeFont.php +++ b/src/Commands/VsCode/VsCodeFont.php @@ -5,8 +5,6 @@ use Lwwcas\Holo\Traits\Runable; use Symfony\Component\Process\Process; use Symfony\Component\Console\Command\Command; -use Symfony\Component\Console\Input\InputOption; -use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface;