From c7e51f5b2c18176c2c4842939852b8b329337976 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Sat, 30 Apr 2022 21:04:41 +0200 Subject: [PATCH] Resolve #359 --- build/plugins.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/plugins.php b/build/plugins.php index e2c5d3507..25b739800 100755 --- a/build/plugins.php +++ b/build/plugins.php @@ -37,7 +37,7 @@ foreach (glob(ROOT_DIR . '/plugins/*', GLOB_NOSORT | GLOB_ONLYDIR) as $dir) { echo "+ {$name} {$version}\n"; $manifest_item['type'] = 'plugin'; $manifest_item['id'] = $name; - $manifest_item['file'] = "{$dir}-{$version}.tgz"; + $manifest_item['file'] = "plugins/{$name}-{$version}.tgz"; ksort($manifest_item); $manifest[$name] = $manifest_item; $tar_destination = PLUGINS_DEST_DIR . "/{$name}-{$version}.tar";