Skip to content

Commit

Permalink
Fix bash script on linux
Browse files Browse the repository at this point in the history
Linux only accept one argument in a shebang, so everything after the
/usr/bin/env is seen as one argument.

For setting this node option, see
npm/npm#12238

Resolve ionic-team#838
  • Loading branch information
jor-rit committed Mar 28, 2017
1 parent d6cd13e commit e23e361
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ionic-app-scripts.js
@@ -1,4 +1,4 @@
#!/usr/bin/env node --max_old_space_size=2048
#!/usr/bin/env node

if (process.argv.length > 2) {

Expand Down

0 comments on commit e23e361

Please sign in to comment.