Skip to content

Commit 6798c09

Browse files
committed
fix autoload path in router.php
1 parent 561e3b9 commit 6798c09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

router.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
* Determine the autoload file to load.
2020
*/
2121
if (file_exists(__DIR__ . '/../../autoload.php')) {
22-
// when running from vendor/google/cloud-error-reporting
23-
require_once __DIR__ . '/../../vendor/autoload.php';
22+
// when running from vendor/google/cloud-functions-framework
23+
require_once __DIR__ . '/../../autoload.php';
2424
} elseif (file_exists(__DIR__ . '/vendor/autoload.php')) {
2525
// when running from git clone.
2626
require_once __DIR__ . '/vendor/autoload.php';

0 commit comments

Comments
 (0)