Created
April 24, 2015 00:36
-
-
Save shivaram/0094d5d90624bd81381d to your computer and use it in GitHub Desktop.
Prompt for jira password
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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