-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add hack to composer-install target to include workaround for bug (#29)
* Add hack to composer-install target to include workaround for bug This adds a hack to the composer-install target so that it includes a workaround for the bug preventing the macros from being compiled under Circle CI. It also fixes an incorrect quoting in the non-dev Docker image. * Do not used cached docker image under Circle CI * Fix references to composer.phar
- Loading branch information
Showing
6 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- Expansion.php 2019-04-16 18:58:13.254005966 +0000 | ||
+++ Expansion.php 2019-04-16 18:59:03.202020632 +0000 | ||
@@ -380,6 +380,9 @@ | ||
|
||
$delimiters = $result->{'delimiters'}; | ||
|
||
+ // HACK ALERT: THIS SHOULDN'T HAPPEN AND SHOULD BE FIXED UPSTREAM | ||
+ if (!is_array($context)) $context = [$context]; | ||
+ | ||
// normalize associative arrays | ||
if (array_values($context) !== $context) $context = [$context]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters