summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorRob Loach <robloach@gmail.com>2015-02-07 22:05:07 -0500
committerRob Loach <robloach@gmail.com>2015-02-07 22:05:07 -0500
commitbc0f13b93a3b20f1640c75c9f28fe77b5a4c89ca (patch)
tree3530b776e0b69f6d7449a46224f46487ca576578 /bin
parent7ca89a5eb6c7993658c9efce339f6805a0ee8351 (diff)
downloadgit-deploy-bc0f13b93a3b20f1640c75c9f28fe77b5a4c89ca.zip
git-deploy-bc0f13b93a3b20f1640c75c9f28fe77b5a4c89ca.tar.gz
git-deploy-bc0f13b93a3b20f1640c75c9f28fe77b5a4c89ca.tar.bz2
Rename to Git Deploy0.0.4
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gh-pages-deploy4
-rwxr-xr-xbin/git-deploy4
-rw-r--r--bin/git-deploy.php (renamed from bin/gh-pages-deploy.php)4
3 files changed, 6 insertions, 6 deletions
diff --git a/bin/gh-pages-deploy b/bin/gh-pages-deploy
deleted file mode 100755
index e323caa..0000000
--- a/bin/gh-pages-deploy
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/bin/env php
-<?php
-
-require 'gh-pages-deploy.php';
diff --git a/bin/git-deploy b/bin/git-deploy
new file mode 100755
index 0000000..7b1b816
--- /dev/null
+++ b/bin/git-deploy
@@ -0,0 +1,4 @@
+#!/usr/bin/env php
+<?php
+
+require_once('git-deploy.php');
diff --git a/bin/gh-pages-deploy.php b/bin/git-deploy.php
index 5b039bc..b0eeb3c 100644
--- a/bin/gh-pages-deploy.php
+++ b/bin/git-deploy.php
@@ -1,12 +1,12 @@
<?php
if (PHP_SAPI !== 'cli') {
- echo 'Warning: GitHub Pages Deploy should be invoked via the CLI version of PHP, not the '.PHP_SAPI.' SAPI'.PHP_EOL;
+ echo 'Warning: Git Deploy should be invoked via the CLI version of PHP, not the '.PHP_SAPI.' SAPI'.PHP_EOL;
}
require __DIR__.'/../src/bootstrap.php';
-use GitHubPagesDeploy\Console\Application;
+use GitDeploy\Console\Application;
error_reporting(-1);