Build_AtomicEditor.sh 401 B

123456789
  1. #!/usr/bin/env sh
  2. if [ "$(uname)" = "Darwin" ]; then
  3. ./Build/Mac/node/node ./Build/Scripts/Bootstrap.js buildeditor "$@"
  4. elif [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]; then
  5. ./Build/Linux/node/node ./Build/Scripts/Bootstrap.js buildeditor "$@"
  6. elif [ "$(expr substr $(uname -s) 1 7)" = "MSYS_NT" ]; then
  7. ./Build/Windows/node/node.exe ./Build/Scripts/Bootstrap.js buildeditor "$@"
  8. fi