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', +]);