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
name: ??? | |
# Use existing Backdrop recipe, then customize below. | |
recipe: backdrop | |
config: | |
# Where Backdrop resides, relative to this file. | |
webroot: docroot | |
database: mariadb | |
php: '?.?' | |
drush: '?.?.?' |
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
ISSUE=$1 | |
PR=$2 | |
PHP=$3 | |
INSTALL=$4 | |
if [[ $(basename $PWD) = "docroot" ]]; then | |
echo "You are already in a docroot!!! Moving up one level..." | |
cd .. | |
fi |
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
#!/usr/bin/env bash | |
## | |
# Clone a Backdrop project; optionally fetching one or more PRs locally. | |
# | |
PROJECT=$1 | |
PRS="${@:2}" # Get all arguments after the 1st one. | |
PROJECT_TYPES=("module" "theme" "layout" "profile") | |
PROJECT_TYPE=`wget --quiet --output-document=- https://raw.githubusercontent.com/backdrop-contrib/${PROJECT}/HEAD/${PROJECT}.info | awk '/type/ {print $3}'` |