common.sh 486 B

1234567891011121314151617181920212223242526272829303132
  1. mx2cc=""
  2. mx2cc_new=""
  3. ted2=""
  4. ted2_new=""
  5. launcher=""
  6. launcher_new=""
  7. if [ "$OSTYPE" = "linux-gnu" ]
  8. then
  9. host="linux"
  10. mx2cc="../bin/mx2cc_linux"
  11. ted2="../bin/ted2_linux"
  12. launcher="../Monkey2 (Linux)"
  13. elif [ "$OSTYPE" = "linux-gnueabihf" ]
  14. then
  15. host="raspbian"
  16. mx2cc="../bin/mx2cc_raspbian"
  17. ted2="../bin/ted2_raspbian"
  18. launcher="../Monkey2 (Raspbian)"
  19. else
  20. host="macos"
  21. mx2cc="../bin/mx2cc_macos"
  22. ted2="../bin/ted2_macos.app"
  23. launcher="../Monkey2 (Macos).app"
  24. fi