Skip to content
This repository has been archived by the owner on Dec 24, 2023. It is now read-only.

Commit

Permalink
Fixed precompile
Browse files Browse the repository at this point in the history
  • Loading branch information
deathbeam committed Jul 26, 2015
1 parent 4a70872 commit 785f75c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/shared/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ task precompile(type:Exec) {
}

if (System.getProperty('os.name').toLowerCase().contains('windows')) {
commandLine 'cmd', '/c', 'precompile.bat'
commandLine 'cmd', 'precompile.bat'
} else {
commandLine './precompile'
commandLine 'sh', 'precompile'
}
}

Expand Down

0 comments on commit 785f75c

Please sign in to comment.