Skip to content

Commit b033e4b

Browse files
committed
refactor: change $localPluginPath path
1 parent f913156 commit b033e4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Service/Impl/AppStoreServiceImpl.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function getOtherApp(string $username): array
9494
*/
9595
public function download(string $space, string $identifier, string $version): bool
9696
{
97-
$localPluginPath = Plugin::PLUGIN_PATH . DIRECTORY_SEPARATOR . $space . DIRECTORY_SEPARATOR . $identifier;
97+
$localPluginPath = Plugin::PLUGIN_PATH . DIRECTORY_SEPARATOR . $identifier;
9898
if (file_exists($localPluginPath)) {
9999
throw new \RuntimeException(sprintf('The plugin %s already exists', $identifier));
100100
}

0 commit comments

Comments
 (0)