setup 197 B

12345678910111213
  1. #!/usr/bin/env bash
  2. # Minimum requirements to run ./build --download-dependencies
  3. y=
  4. if [ $# -eq 1 ]; then
  5. y=-y
  6. fi
  7. apt-get update
  8. apt-get install $y \
  9. git \
  10. python3 \
  11. python3-distutils \
  12. ;