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 | |
# Fail script if any command fails | |
set -e | |
function usage { | |
local script_name | |
script_name=$(basename "$0") | |
cat <<HELP | |
$script_name (options) <message> |
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 | |
# Example of the slack-usernames file: | |
# [email protected] @UABCDEF123 | |
# Fail script if any command fails | |
set -e | |
GITLAB_HOST=${GITLAB_HOST:-gitlab.com} | |
GITLAB_UPSTREAM_NAMESPACE=${GITLAB_UPSTREAM_NAMESPACE:-mycorpcompany} |