Skip to content
This repository has been archived by the owner on Jul 11, 2019. It is now read-only.

Commit

Permalink
adds destination arg to fix regression affecting 0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
joeferraro committed Sep 23, 2016
1 parent 55ca7c7 commit e917dd7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mavensmate.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def run(command):
#creates a MavensMate project from an existing directory
class CreateMavensMateProject(sublime_plugin.WindowCommand):
def run (self, dirs):
mm.call('new-project-from-existing-directory', False, body={'args': { 'ui': True, 'origin': dirs[0] }})
mm.call('new-project-from-existing-directory', False, body={'args': { 'ui': True, 'directory': dirs[0], 'origin': dirs[0] }})

def is_visible(self, dirs):
if dirs != None and type(dirs) is list and len(dirs) > 1:
Expand Down
3 changes: 3 additions & 0 deletions messages/7.0.2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
MavensMate-SublimeText 7.0.2 changelog

- Resolves issue creating new projects from an existing directory
2 changes: 1 addition & 1 deletion packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"platforms": {
"osx": [
{
"version": "7.0.1",
"version": "7.0.2",
"release_notes": "",
"url": "https://nodeload.github.com/joeferraro/MavensMate-SublimeText/zipball/master"
}
Expand Down

0 comments on commit e917dd7

Please sign in to comment.