Skip to content

Commit 8512442

Browse files
authored
Merge pull request #15 from Aeliot-Tm/fix-release
Work around base path in config for Box
2 parents 244b80f + 39978a6 commit 8512442

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/box/prepare-config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
$configPath = __DIR__ . '/config.json';
1515
$config = json_decode(file_get_contents($configPath), true, 512, \JSON_THROW_ON_ERROR);
1616

17-
$config['base-path'] = dirname($configPath, 2);
17+
$config['base-path'] = dirname($configPath, 2) . '/';
1818

1919
file_put_contents($configPath, json_encode($config, \JSON_THROW_ON_ERROR));

0 commit comments

Comments
 (0)