From d64273c9e9a0dbe979ff92c21c91d945dadda7dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Danyi?= Date: Mon, 29 Aug 2016 17:06:02 +0200 Subject: [PATCH] * deploy.php fixed * bookmark installer fixed --- bookmarkInstalation.html | 2 +- bookmarkletLoader.js | 2 +- deploy.php | 12 +++++++++++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/bookmarkInstalation.html b/bookmarkInstalation.html index 687f1e6..eb821ce 100644 --- a/bookmarkInstalation.html +++ b/bookmarkInstalation.html @@ -21,7 +21,7 @@ Just Drag'n'Drop the button into your Bookmarks
- CardPrinter + CardPrinter
diff --git a/bookmarkletLoader.js b/bookmarkletLoader.js index 9752688..c729bdc 100644 --- a/bookmarkletLoader.js +++ b/bookmarkletLoader.js @@ -2,7 +2,7 @@ javascript:(function(){ var head = document.getElementsByTagName("head")[0]; var scriptElement = document.createElement("script"); - scriptElement.src = 'https://qoomon.github.io/Jira-Issue-Card-Printer/bookmarklet.js'; + scriptElement.src = 'http://vasgyuro.tsp/~edvidan/jira-card-printer/bookmarklet.js'; head.appendChild(scriptElement); head.removeChild(scriptElement); })(); diff --git a/deploy.php b/deploy.php index 0162875..25877da 100644 --- a/deploy.php +++ b/deploy.php @@ -2,10 +2,20 @@ require 'recipe/common.php'; -server('prod', 'host', 22) +server('prod', 'vasgyuro.tsp', 22) ->user('edvidan') ->forwardAgent() // You can use identity key, ssh config, or username/password to auth on the server. ->stage('production') ->env('deploy_path', '/home/edvidan/applications/jira-card-printer'); // Define the base path to deploy your project to. set('repository', '/home/edvidan/git/jira-card-printer.git'); +env('branch', 'taurus-xft'); + +task('deploy', [ + 'deploy:prepare', + 'deploy:release', + 'deploy:update_code', +// 'deploy:vendors', + 'deploy:symlink', + 'cleanup', +]);