- (Edit the above to reflect status)
- TL;DR - what's this PR for?
- When does this need to be merged by?
| select hostname,COUNT(*) from watchdog group by hostname order by COUNT(*) asc |
| # First, check out the latest tag, or HEAD of the main branch. | |
| # "git describe --abbrev=0 --tags" grabs the most recent lightweight tag | |
| # The first command creates a variable out of that, "$tag" | |
| # That's passed to "git diff", and we're doing a git diff from the current HEAD | |
| # compared with that tag, and targeting the "docroot/" directory. | |
| # Then we're passing that to grep, and searching for a line that starts with | |
| # a plus sign, followed by "function" and "_update". | |
| tag=$(git describe --abbrev=0 --tags); git diff ${tag} docroot/ | grep -E "^\+.*function.*_update" |
| #!/bin/bash | |
| ################## | |
| # Variables | |
| ################## | |
| # Path to a place to store your sites. | |
| WEBSERVERROOT=/Users/jbickar/Sites #no trailing slash | |
| # Path to your lando configuration file for Drupal 7 | |
| LANDOCONFIG=/Users/jbickar/Sites/d7.lando.yml |
| --- Failed scenarios: | |
| /app/vendor/su-sws/linky_clicky/products/jsv/features/editor.feature:7 | |
| /app/vendor/su-sws/linky_clicky/products/jsv/features/editor.feature:17 | |
| /app/vendor/su-sws/linky_clicky/products/jsv/features/editor.feature:31 | |
| /app/vendor/su-sws/linky_clicky/products/jsv/features/editor.feature:38 | |
| /app/vendor/su-sws/linky_clicky/products/jsv/features/editor.feature:47 | |
| /app/vendor/su-sws/linky_clicky/products/jsv/features/page_not_found.feature:7 | |
| /app/vendor/su-sws/linky_clicky/products/jsv/features/site_owner.feature:8 | |
| /app/vendor/su-sws/linky_clicky/products/jsv/features/site_owner.feature:15 |
| TTS-MBP2011: ~/Documents/working/linky_clicky$ find . -name *.feature | grep -E "\./(includes|products|sites)" | wc -l | |
| 393 | |
| TTS-MBP2011: ~/Documents/working/linky_clicky$ find . -name *.feature | grep -E "\./(includes|products|sites)" | xargs grep Scenario | wc -l | |
| 1229 |
| #!/bin/bash | |
| drush make --concurrency=4 development/product/drupalcamp/drupalcamp.make /tmp/drupalcamp-dev | |
| drush make --concurrency=4 development/product/jumpstart-academic/jumpstart-academic.make /tmp/academic-dev | |
| drush make --concurrency=4 development/product/jumpstart-engineering/jumpstart-engineering.make /tmp/engineering-dev | |
| drush make --concurrency=4 development/product/jumpstart-lab/jumpstart-lab.make /tmp/lab-dev | |
| drush make --concurrency=4 development/product/jumpstart-plus/jumpstart-plus.make /tmp/plus-dev | |
| drush make --concurrency=4 development/product/jumpstart-vpsa/jumpstart-vpsa.make /tmp/vpsa-dev | |
| drush make --concurrency=4 development/product/jumpstart/jumpstart.make /tmp/jumpstart-dev | |
| drush make --concurrency=4 production/product/jumpstart-academic/jumpstart-academic.make /tmp/academic-prod |
| diff --git a/actions/archive.action.inc b/actions/archive.action.inc | |
| index f005527..ef36acd 100644 | |
| --- a/actions/archive.action.inc | |
| +++ b/actions/archive.action.inc | |
| @@ -3,10 +3,14 @@ | |
| /** | |
| * @file | |
| * Provides an action for creating a zip archive of selected files. | |
| + * | |
| * An entry in the {file_managed} table is created for the newly created archive, |
| find . -name "*.make" -exec sed -i '' 's/features\]\[version\] \= \"2.6\"/features\]\[version\] \= \"2.10\"/g' "{}" \; |
| SELECT TABLE_NAME AS "Table", round(((data_length + index_length) / 1024 / 1024), 2) AS Size_in_MB FROM information_schema.TABLES WHERE table_schema = "<db_name>" ORDER BY Size_in_MB ASC; |