Skip to content

Commit

Permalink
Disabling cordova android release build for now
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisl9029 committed Aug 5, 2015
1 parent 28dfdc5 commit 39e1f31
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ gulp.task('package', ['build', 'clean-package'], function package() {
.pipe(gulp.dest(basePaths.prod));

return gulp.src('')
.pipe(shell('ionic build android' + (argv.prod ? ' --release' : '')))
.pipe(shell('ionic build android'))
//FIXME: release build throws error on install
// .pipe(shell('ionic build android' + (argv.prod ? ' --release' : '')))
.pipe(shell('mkdir -p ' + basePaths.mobile))
.pipe(shell(
'cp ' + basePaths.platforms +
Expand Down

0 comments on commit 39e1f31

Please sign in to comment.