Skip to content

Instantly share code, notes, and snippets.

@shivaram
Created April 24, 2015 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shivaram/0094d5d90624bd81381d to your computer and use it in GitHub Desktop.
Save shivaram/0094d5d90624bd81381d to your computer and use it in GitHub Desktop.
Prompt for jira password
#!/bin/bash
FWDIR="$(cd "`dirname "$0"`"; pwd)"
pushd $FWDIR >/dev/null
echo -n "JIRA Password:";
read -s password
echo ""
JIRA_PASSWORD=$password JIRA_USERNAME=shivaram PUSH_REMOTE_NAME=origin ./merge_spark_pr.py
popd >/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment