diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gh-pages-deploy | 4 | ||||
-rwxr-xr-x | bin/git-deploy | 4 | ||||
-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); |