From 72df20a4999f8a3c0580a3fcdb620d502d067e3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Markovi=C4=87?= Date: Thu, 28 Nov 2013 15:31:42 +0100 Subject: [PATCH 1/2] FIX Only define SECRET_ACCESS_TOKEN if it's not already defined --- deploy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.php b/deploy.php index fac47de..69a3a2f 100644 --- a/deploy.php +++ b/deploy.php @@ -26,7 +26,7 @@ * * @var string */ -define('SECRET_ACCESS_TOKEN', 'BetterChangeMeNowOrSufferTheConsequences'); +if (!defined('SECRET_ACCESS_TOKEN')) define('SECRET_ACCESS_TOKEN', 'BetterChangeMeNowOrSufferTheConsequences'); /** * The address of the remote Git repository that contains the code that's being From fa9ae770e5babf6dcc41a14749b374b3eb3083e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Markovi=C4=87?= Date: Thu, 28 Nov 2013 15:31:52 +0100 Subject: [PATCH 2/2] Bump version --- deploy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.php b/deploy.php index 69a3a2f..2965060 100644 --- a/deploy.php +++ b/deploy.php @@ -4,7 +4,7 @@ * * Automatically deploy the code using PHP and Git. * - * @version 1.1.1 + * @version 1.1.2 * @link https://github.com/markomarkovic/simple-php-git-deploy/ */