-
1 May 2012 8:08 PM #1
Deploy Usability Enhancement - Feature Request
Deploy Usability Enhancement - Feature Request
It would be nice to have
1. A configuration option to automatically save on deploy. (save a ctrl+s, or click)
2. Set helpful focus on dialogs for keyboard control during deploy.
A. Focus on the selected No button in the Missing Store(s) warning dialog.
B. Focus on the selected Close button in the unamed dialog that shows the results of the rsync.
-
2 May 2012 9:44 AM #2
I'd love to get rid of the first popup (or have an option to turn it off), because I find myself deploying frequently and am already tired of having to click past it over and over and over again.
-
2 May 2012 11:57 PM #3
Workaround
Workaround
As a workaround, I took the rsync command line that is displayed in the dialog and along with the "fileschanged" tool (linux only) wrote a little bash script that keeps things synced all the time (within -t 1 seconds).
Code:#!/bin/bash fileschanged -r -t 1 /my/source/folder/ | while read file; do rsync -arvuz /my/source/folder/ /my/destination/folder/ --exclude .svn --exclude .git --exclude .DS_Store --exclude .cvs --exclude metadata --exclude *.xds --cvs-exclude done


Reply With Quote