Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
removed the dot git from the url in the question
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbannert committed Aug 10, 2018
1 parent 94da73f commit ec03be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Automatic/QuestionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static function getPackageQuestion(string $name, ?string $url): string
return \sprintf($message, $name);
}

return \sprintf(" Review the package from %s.\n" . $message, $url, $name);
return \sprintf(" Review the package from %s.\n" . $message, \str_replace('.git', '', $url), $name);
}

/**
Expand Down

0 comments on commit ec03be1

Please sign in to comment.