Skip to content

Commit

Permalink
With no selection we update entire project
Browse files Browse the repository at this point in the history
Previously we would fallback to current document, when nothing was selected in the file browser.

This seemed consistent with the Add, Remove, and Revert commands, though for updating, we generally do want to batch update, and limiting a command to current file can easily be done using ⌃⌘R (select current document).
  • Loading branch information
sorbits committed Mar 19, 2015
1 parent f5a873f commit 8e08e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Commands/Update to Latest.plist
Expand Up @@ -12,7 +12,7 @@ if [ "$TM_SELECTED_FILES" ]
then
eval tmsvn.rb update "$TM_SELECTED_FILES"
else
tmsvn.rb update "$TM_FILEPATH"
tmsvn.rb update "${TM_PROJECT_DIRECTORY:-TM_DIRECTORY}"
fi</string>
<key>input</key>
<string>none</string>
Expand Down

0 comments on commit 8e08e62

Please sign in to comment.