From 33dbe48a2cb73339dcc1040a5e8683ff9303215b Mon Sep 17 00:00:00 2001 From: Roman Axelrod Date: Fri, 2 Sep 2022 07:13:54 +0300 Subject: [PATCH] Fix path typo. --- platforms/php/build.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/php/build.php b/platforms/php/build.php index 4ac3818..c3023bd 100644 --- a/platforms/php/build.php +++ b/platforms/php/build.php @@ -61,7 +61,7 @@ class Component_Builder { } function build(): void { - $root_path = __DIR__ . '/' . $this->module_path . '../..'; + $root_path = __DIR__ . '/' . $this->module_path . '/../..'; $file_name = $this->get_handlebars_template( "$root_path/src/$this->component_name.template.hbs" ); $output_folder = $root_path . '/exports/wordpress/templates';