This file contains hidden or 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
| { | |
| "from": 0, | |
| "size": 10, | |
| "sort": [ | |
| { | |
| "_score": { | |
| "order": "desc" | |
| } | |
| } | |
| ], |
This file contains hidden or 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
| βββββββ No problems found. | |
| ββββββ Checking "video.png". | |
| βββββββ No problems found. | |
| ββββββ Checking "playlist-audio.png". | |
| βββββββ No problems found. | |
| ββββββ Checking "dashicon-edit.png". | |
| βββββββ No problems found. | |
| ββββββ Checking "more.png". | |
| βββββββ No problems found. | |
| ββββββ Checking "pagebreak-2x.png". |
This file contains hidden or 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
| <?php | |
| // Does not support flag GLOB_BRACE | |
| function rsearch($folder, $pattern_array) { | |
| $return = array(); | |
| $iti = new RecursiveDirectoryIterator($folder); | |
| foreach(new RecursiveIteratorIterator($iti) as $file){ | |
| if (in_array(strtolower(array_pop(explode('.', $file))), $pattern_array)){ | |
| $return[] = $file; | |
| } |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| echo "Cleaning" | |
| rm -rf app/code/Axelites/MgtVarnish | |
| rm -rf app/code/Mgt | |
| rm -rf var/cache/* | |
| rm -rf var/view_preprocessed/* | |
| rm -rf var/page_cache/* |
NewerOlder