Skip to content

Commit fb7c67d

Browse files
committed
Script
1 parent 26ee007 commit fb7c67d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/script.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,8 @@ ssh -qT git@github.com >/dev/null 2>&1; [ $? -ne 1 ] && echo "SSH connection to
3131

3232
echo "Checking Github CLI status"
3333

34-
gh auth status &>/dev/null || echo "User is NOT authenticated with GitHub CLI."
34+
gh auth status &>/dev/null || { echo "User is NOT authenticated with GitHub CLI." && exit 1 }
3535

36+
read -p "Input test wget: " INPUT
37+
38+
echo "$INPUT"

0 commit comments

Comments
 (0)