We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26ee007 commit fb7c67dCopy full SHA for fb7c67d
src/script.sh
@@ -31,5 +31,8 @@ ssh -qT git@github.com >/dev/null 2>&1; [ $? -ne 1 ] && echo "SSH connection to
31
32
echo "Checking Github CLI status"
33
34
-gh auth status &>/dev/null || echo "User is NOT authenticated with GitHub CLI."
+gh auth status &>/dev/null || { echo "User is NOT authenticated with GitHub CLI." && exit 1 }
35
36
+read -p "Input test wget: " INPUT
37
+
38
+echo "$INPUT"
0 commit comments