Skip to content

Commit

Permalink
Setup script typos
Browse files Browse the repository at this point in the history
  • Loading branch information
agitter authored Jul 17, 2023
1 parent 72a96c9 commit 35b6e78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.bash
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ echo "OWNER and REPO refer to the details of your manuscript repo location:"
echo "i.e. https://github.com/OWNER/REPO."
echo
echo "Options:"
echo " -o --owner GitHub user or organisation name."
echo " -o --owner GitHub user or organization name."
echo " -r --repo Name of the repository for your new manuscript."
echo " -y --yes Non-interactive mode. Continue script without asking for confirmation that the repo exists."
echo " -s --ssh Use SSH to authenticate GitHub account. HTTPS is used by default."
Expand Down Expand Up @@ -104,7 +104,7 @@ if [ -z "${OWNER}" ] || [ -z "${REPO}" ]; then
echo "First, we need to specify where to create the GitHub repo for your manuscript."
echo
echo "The URL will take this format: https://github.com/OWNER/REPO."
echo "OWNER is your username or organisation"
echo "OWNER is your username or organization"
echo "REPO is the name of your repository"
echo
read -r -p "Type in the OWNER now:" input
Expand Down Expand Up @@ -188,13 +188,13 @@ fi
case $AUTH in
0)
echo
echo "Seting origin URL using its https web address"
echo "Setting origin URL using its https web address"
echo
git remote set-url origin https://github.com/${OWNER}/${REPO}.git
;;
1)
echo
echo "Seting origin URL using SSH"
echo "Setting origin URL using SSH"
echo
git remote set-url origin [email protected]:$OWNER/$REPO.git
;;
Expand Down

0 comments on commit 35b6e78

Please sign in to comment.