-
-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
bugSomething isn't workingSomething isn't working
Description
What were you trying to do?
CopiesToBuildDirectory.php
$matchingFiles = glob($sourcePath.DIRECTORY_SEPARATOR.$pattern, GLOB_BRACE);
This causes the build to crash in Ubuntu as GLOB_BRACE is not defined.
This can be corrected to the below and the build should compile correctly:
$matchingFiles = glob($sourcePath.DIRECTORY_SEPARATOR.$pattern, (defined('GLOB_BRACE') ? GLOB_BRACE | GLOB_ONLYDIR : GLOB_ONLYDIR));
What happened?
The build crashed with error GLOB_BRACE undefined
How to reproduce the bug
Compile on Linux Ubuntu
Debug Output
n/a
Which operating systems have you seen this occur on?
Linux
Notes
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working