Fixing ending slash at repo folder

This commit is contained in:
Yves Hoppe 2015-10-31 19:01:21 +01:00
parent 092ea0328d
commit ed8d237816
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class InstallWeblinksCest
$I->doAdministratorLogin();
$I->comment('get Weblinks repository folder from acceptance.suite.yml (see _support/AcceptanceHelper.php)');
$path = $I->getConfiguration('repo_folder');
$I->installExtensionFromFolder($path . 'src/com_weblinks/');
$I->installExtensionFromFolder(rtrim($path, "/") . '/src/com_weblinks/');
$I->doAdministratorLogout();
}
}