Skip to content

Instantly share code, notes, and snippets.

@r-pufky
Created December 13, 2019 06:26
Show Gist options
  • Save r-pufky/1fd0ce46a996c5bcb39ed3068317f355 to your computer and use it in GitHub Desktop.
Save r-pufky/1fd0ce46a996c5bcb39ed3068317f355 to your computer and use it in GitHub Desktop.
echo 'This will cut a production release by overwriting prod with current dev.'
read -n 1 -p 'Press Y to continue, any other key to abort: ' READ_CONTINUE
if [ "${READ_CONTINUE}" != 'Y' ]; then
echo -e '\nAborting.'
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment