File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ void handleSTDINDiff()
101
101
102
102
if (diff && [diff length ] > 0 ) {
103
103
GitXApplication *gitXApp = [SBApplication applicationWithBundleIdentifier: kGitXBundleIdentifier ];
104
+ [gitXApp setSendMode: kAENoReply ];
104
105
[gitXApp activate ];
105
106
[gitXApp showDiff: diff];
106
107
exit (0 );
@@ -110,6 +111,7 @@ void handleSTDINDiff()
110
111
void handleDiffWithArguments (NSURL *repositoryURL, NSArray *arguments)
111
112
{
112
113
GitXApplication *gitXApp = [SBApplication applicationWithBundleIdentifier: kGitXBundleIdentifier ];
114
+ [gitXApp setSendMode: kAENoReply ];
113
115
[gitXApp activate ];
114
116
[gitXApp performDiffIn: repositoryURL withOptions: arguments];
115
117
exit (0 );
@@ -118,6 +120,7 @@ void handleDiffWithArguments(NSURL *repositoryURL, NSArray *arguments)
118
120
void handleOpenRepository (NSURL *repositoryURL, NSArray *arguments)
119
121
{
120
122
GitXApplication *gitXApp = [SBApplication applicationWithBundleIdentifier: kGitXBundleIdentifier ];
123
+ [gitXApp setSendMode: kAENoReply ];
121
124
[gitXApp activate ];
122
125
[gitXApp open: repositoryURL withOptions: arguments];
123
126
return ;
You can’t perform that action at this time.
0 commit comments