Skip to content

Commit ff12734

Browse files
author
Mihail Slavchev
committed
rename a variable
1 parent 5630cde commit ff12734

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/services/android-project-service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,12 @@ class AndroidProjectService implements IPlatformProjectService {
148148
return (() => {
149149
var buildConfiguration = options.release ? "release" : "debug";
150150
var args = this.getAntArgs(buildConfiguration, projectRoot);
151-
var args2 = this.getAntArgs(buildConfiguration, projectRoot);
151+
var argsSaved = this.getAntArgs(buildConfiguration, projectRoot);
152152
this.spawn('ant', args).wait();
153153
this.generateMetadata(projectRoot);
154154
this.updateMetadata(projectRoot);
155155
// build the project again in order to include the newly generated metadata
156-
this.spawn('ant', args2).wait();
156+
this.spawn('ant', argsSaved).wait();
157157
}).future<void>()();
158158
}
159159

0 commit comments

Comments
 (0)