Skip to content

Commit cf80ace

Browse files
committed
Fix an issue where a typo in ModuleInstaller prevented it from working properly
1 parent d8bbea2 commit cf80ace

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.2] - 2019-06-03
11+
12+
### Fixed
13+
- Fix an issue where a typo in ModuleInstaller prevented it from working properly.
14+
1015
## [0.0.1] - 2019-06-03
1116

1217
### Added

src/ComposerInstaller/ModuleInstaller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ModuleInstaller extends BaseInstaller
2020
*/
2121
public function getInstallPath(PackageInterface $package)
2222
{
23-
return $this->getFullPath($package, 'site/modules');)
23+
return $this->getFullPath($package, 'site/modules'));
2424
}
2525

2626
/**

0 commit comments

Comments
 (0)