├── LICENSE ├── README.md ├── bin ├── compile ├── detect └── release └── profile └── autossh.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/heroku-buildpack-autossh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/heroku-buildpack-autossh/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/heroku-buildpack-autossh/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/heroku-buildpack-autossh/HEAD/bin/detect -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oddcamp/heroku-buildpack-autossh/HEAD/bin/release -------------------------------------------------------------------------------- /profile/autossh.sh: -------------------------------------------------------------------------------- 1 | export PATH="$HOME/.heroku/autossh:$PATH" 2 | --------------------------------------------------------------------------------