You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cli/ob.php
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
6
6
// command line tool (alpha)
7
7
8
-
namespaceob\tools\cli;
8
+
namespaceOpenBroadcaster\CLI;
9
9
10
10
define('OB_CLI', true);
11
11
@@ -15,15 +15,15 @@
15
15
die('This tool can only be used from the command line.');
16
16
}
17
17
18
-
if (!file_exists(__DIR__ . '/../../config.php')) {
18
+
if (!file_exists(__DIR__ . '/../config.php')) {
19
19
die('Missing config.php. Please make sure the OpenBroadcaster has a valid configuration file.' . PHP_EOL);
20
20
}
21
21
22
-
if (!is_dir(__DIR__ . '/../../vendor')) {
22
+
if (!is_dir(__DIR__ . '/../vendor')) {
23
23
die('Missing vendor directory in OpenBroadcaster root directory. Install composer then run "composer install" to get required dependencies.' . PHP_EOL);
0 commit comments