Skip to content

Instantly share code, notes, and snippets.

@chrishyle
Created July 24, 2010 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrishyle/488516 to your computer and use it in GitHub Desktop.
Save chrishyle/488516 to your computer and use it in GitHub Desktop.
#!/bin/bash
#set the bash environment to allow 2048 simultaneous files to be open (instead of 256)
ulimit -n 2048
#move up to the root level
#(allows this script to be triggered from any directory and still be self contained to the project)
cd `dirname $0`/..
#launch the build.js runner, passing through all command-line arguments
build_tools/build.js $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment