OSDN Git Service

remove utils/local-build. closes #353
authorscribu <mail@scribu.net>
Mon, 11 Mar 2013 11:44:07 +0000 (13:44 +0200)
committerscribu <mail@scribu.net>
Mon, 11 Mar 2013 11:47:20 +0000 (13:47 +0200)
utils/local-build [deleted file]

diff --git a/utils/local-build b/utils/local-build
deleted file mode 100755 (executable)
index 9d92ea8..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-if [ "$BASH_SOURCE" = "$0" ]; then
-       echo "This file should not be executed. It should be sourced into your current shell like this:"
-       echo
-       echo "source $BASH_SOURCE"
-       echo
-       echo "Add the above line to your .bashrc or .bash_profile to have this environment set up"
-       echo "automatically when you log in."
-       exit 1
-fi
-
-[ -f composer.phar ] || curl -sS https://getcomposer.org/installer | php
-
-[ -d vendor/ ] || php composer.phar install
-
-DIR=$(cd $(dirname ${BASH_SOURCE[0]}) && pwd)
-
-alias wp='$DIR/../bin/wp'
-
-. $DIR/wp-completion.bash