Skip to content

Commit aa39271

Browse files
authored
Fix unintentional command execution in quickstart.sh (#76)
Signed-off-by: Ryan Jendoubi <[email protected]>
1 parent 0526f52 commit aa39271

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

quickstart.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ if pgrep -x "ssh-agent" >/dev/null
7878
then
7979
echo "ssh-agent OK"
8080
else
81-
echo "ssh-agent is stopped, please start it by running: eval `ssh-agent -s` "
82-
#eval `ssh-agent -s`
81+
echo "ssh-agent is stopped, please start it by running: eval \`ssh-agent -s\` "
82+
exit 1
8383
fi
8484

8585
echo "Checking OS"

0 commit comments

Comments
 (0)