├── .gitignore ├── LICENSE.md ├── README.md ├── bootstrap ├── bootstrappr.sh ├── packages │ └── README.txt └── run └── make_dmg.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munki/bootstrappr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munki/bootstrappr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munki/bootstrappr/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/bootstrappr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munki/bootstrappr/HEAD/bootstrap/bootstrappr.sh -------------------------------------------------------------------------------- /bootstrap/packages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munki/bootstrappr/HEAD/bootstrap/packages/README.txt -------------------------------------------------------------------------------- /bootstrap/run: -------------------------------------------------------------------------------- 1 | bootstrappr.sh -------------------------------------------------------------------------------- /make_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munki/bootstrappr/HEAD/make_dmg.sh --------------------------------------------------------------------------------