Forked from beporter/composer-create-project-test.sh
Created
December 4, 2015 11:56
-
-
Save jacmoe/e9e8ed5fd45affb893a8 to your computer and use it in GitHub Desktop.
Make the process of testing a `composer create-project` command easier by operating against your local working copy.
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 | |
# Allows you to test the create-project process using your local | |
# checked-out copy of the skeleton as the source. You MUST commit the | |
# changes you want to test to a git branch! You MUST name that branch | |
# as the first argument and the destination path to set up the fresh | |
# copy into as the second. | |
# | |
# Usage: | |
# - Place this script in your package's root directory and make it executable. | |
# - Set the PACKAGE_NAME variable below to match your composer.json's `name`. | |
# - Make changes to your package and commit them to a git branch. | |
# - Run `./composer-create-project-test.sh your-branch-name /target/dir` | |
# - The new copy of your project will be in /target/dir. | |
# Capture command line args, or set defaults. | |
BRANCH_NAME=${1:-master} | |
DEST_DIR=${2:-~/Desktop/newapp} | |
PACKAGE_NAME=vendor/package | |
# Warn the dev if they have uncommitted changes since they won't | |
# be included in the spawned project. | |
if ! git diff-index --quiet --cached HEAD; then | |
echo "## There are local uncommitted changes to the repo." | |
echo "## Running create-project now will NOT include these changes." | |
while true; do | |
read -p "## Are you sure you want to continue? [Y/n]: " yn | |
case $yn in | |
[Nn]* ) exit;; | |
[Yy]* ) break;; | |
* ) break;; | |
esac | |
done | |
fi | |
# Warn if the destination dir is non-empty, and offer to delete it. | |
# Composer will fail if the directory is not empty. | |
if [ -d "${DEST_DIR}" ] && [ "$(ls -A "${DEST_DIR}")" ]; then | |
echo "## The destination directory \`${DEST_DIR}\` is not empty." | |
while true; do | |
read -p "## Do you want to delete it and continue? [Y/n]: " yn | |
case $yn in | |
[Nn]* ) exit;; | |
[Yy]* ) rm -rf "${DEST_DIR}"; break;; | |
* ) rm -rf "${DEST_DIR}"; break;; | |
esac | |
done | |
fi | |
# Set up a packages.json file to use with create-project. | |
cat <<EOD > packages.json | |
{ | |
"packages": { | |
"${PACKAGE_NAME}": { | |
"dev-master": { | |
"name": "${PACKAGE_NAME}", | |
"version": "dev-$BRANCH_NAME", | |
"source": { | |
"url": "./", | |
"type": "git", | |
"reference": "" | |
} | |
} | |
} | |
} | |
} | |
EOD | |
# Execute the proper command. | |
composer create-project --repository-url=./packages.json ${PACKAGE_NAME} "${DEST_DIR}" dev-${BRANCH_NAME} | |
# Clean up after ourselves. | |
rm -f packages.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment