Skip to content
This repository has been archived by the owner on Nov 12, 2019. It is now read-only.

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Heleniak committed Sep 1, 2012
1 parent a390a08 commit 5c2643d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rg/broker/commands/AddRepository.php
Expand Up @@ -43,7 +43,7 @@ protected function execute(InputInterface $input, OutputInterface $output) {
$repositoryName = $input->getArgument('name');
$repositoryUrl = rtrim($input->getOption('base-url'), '/') . '/'. $repositoryName;
$targetDir = rtrim($input->getOption('base-dir'), '/') . '/'. $repositoryName;
$cacheDir = rtrim($input->getOption('cache-dir'), '/') . '/'. . $repositoryName;
$cacheDir = rtrim($input->getOption('cache-dir'), '/') . '/'. $repositoryName;

$output->writeln('Creating repository ' . $repositoryName);

Expand Down

0 comments on commit 5c2643d

Please sign in to comment.