Skip to content

Commit eed2b43

Browse files
committed
Merge pull request taskrabbit#13 from jrichardlai/fix-compiler
Fixup compiler
2 parents 6c654c0 + 8ef824a commit eed2b43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/compiler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Compiler.prototype.calculateDirectories = function() {
2929
this.platformDirectory = this.rootDirectory + '/' + this.platform;
3030
this.appDirectory = this.rootDirectory + '/testbuild/' + this.environment + '_' + this.platform;
3131
this.buildDirectory = this.appDirectory + '/build';
32-
32+
3333
switch(this.environment) {
3434
case 'test':
3535
this.configuration = "Debug";
@@ -105,7 +105,7 @@ Compiler.prototype.buildIos = function() {
105105

106106
Compiler.prototype.build = function() {
107107
this.run('mkdir -p ' + this.buildDirectory);
108-
108+
109109
if (this.environment !== 'test') {
110110
this.buildJavascript();
111111
}

0 commit comments

Comments
 (0)