File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ A workflow for [Alfred](http://www.alfredapp.com/) to rapidly open a Secure SHel
88
99## Requirements
1010
11- - [ Alfred] ( http://www.alfredapp.com/ ) (version 2.0 +)
11+ - [ Alfred] ( http://www.alfredapp.com/ ) (version 2.4 +)
1212- The [ Alfred Powerpack] ( http://www.alfredapp.com/powerpack/ ) .
1313- [ ssh.alfredworkflow] ( https://raw.github.com/isometry/alfredworkflows/master/ssh.alfredworkflow )
1414- (optional) [ pybonjour] ( https://pypi.python.org/pypi/pybonjour )
Original file line number Diff line number Diff line change @@ -64,10 +64,10 @@ def unescape(query, characters=None):
6464
6565def work (volatile ):
6666 path = {
67- True : '~/Library/Caches/com.runningwithcrayons.Alfred-2/Workflow Data' ,
68- False : '~/Library/Application Support/Alfred 2/Workflow Data'
67+ True : os . getenv ( 'alfred_workflow_cache' ) ,
68+ False : os . getenv ( 'alfred_workflow_data' )
6969 }[bool (volatile )]
70- return _create (os .path .join ( os . path . expanduser (path ), bundleid ))
70+ return _create (os .path .expanduser (path ))
7171
7272def write (text ):
7373 sys .stdout .write (text )
You can’t perform that action at this time.
0 commit comments