I think we actually want to redirect stdout

This commit is contained in:
Patrick McGuire
2022-05-18 17:24:51 -04:00
committed by GitHub
parent a786e51da5
commit 4b09e658cd
+1 -1
View File
@@ -15,7 +15,7 @@ while getopts ":r:b:" o; do
remote=${OPTARG}
# Ensure that git remote is configured
git remote show $remote 2&> /dev/null || {
git remote show $remote 1&> /dev/null || {
echo "Error: remote '$remote' not found. Add the upstream remote to your repository and try again."
exit 1
}