This file contains hidden or 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 | |
# Get role name, git org or user, and git repo | |
# If not set, error out later | |
# @TODO: add help text | |
# @TODO: verify org/repo are not wildcards | |
while getopts ":r:o:g:h" opt; do | |
case $opt in | |
r) ROLE_NAME="$OPTARG" |