├── .gitignore ├── LICENSE ├── README.md └── scripts └── postinstall /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | *.pkg 4 | build/ 5 | downloads/ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/GNU-bash-mac-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/GNU-bash-mac-installer/HEAD/README.md -------------------------------------------------------------------------------- /scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scriptingosx/GNU-bash-mac-installer/HEAD/scripts/postinstall --------------------------------------------------------------------------------