Kale Worsley


Scripts and snippets
staging(1)
staging(1)
Name
staging - Run Heroku commands on your staging remote.
Synopsis
  • staging [CMD]
  • staging logs --tail
Description
#!/bin/bash

cmd="heroku ${*} -r staging"
echo "${cmd}"
echo
read -p "Continue? [yN] " -n 1 -r
echo  

if [[ $REPLY =~ ^[Yy]$ ]] ; then
  ${cmd}
else
  exit 1
fi
Copyright
staging is made available under the MIT License. See MIT LICENSE for details.
2015-10-19 00:00:00 +0000
staging(1)
staging(1)