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
| name = Kettering Force Title | |
| description = This module is for forcing the admin title on all FPPs that are reusable. | |
| package = Kettering | |
| core = 7.x | |
| version = 7.x-0.1 | |
| dependencies[] = fieldable_panels_panes |
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
| #!/bin/sh | |
| # exit on any errors: | |
| set -e | |
| if [ $# -lt 1 ] | |
| then | |
| echo "Usage: $0 @pantheon-alias" | |
| exit 1 | |
| fi |
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
| #!/bin/sh | |
| echo | |
| if [ -a .commit ] | |
| then | |
| rm .commit | |
| grunt --base=$HOME/kalabox/www/greenbiz/sites/all/themes/greenbiz --gruntfile=$HOME/kalabox/www/greenbiz/sites/all/themes/greenbiz/Gruntfile.coffee | |
| git add sites/all/themes/greenbiz/css | |
| git add sites/all/themes/greenbiz/js/dist | |
| git add sites/all/themes/greenbiz/styleguide | |
| git commit --amend -C HEAD --no-verify |