Skip to content

Commit

Permalink
Remove "\n" at the end of some echo statements
Browse files Browse the repository at this point in the history
  • Loading branch information
lc-at committed Jan 4, 2022
1 parent 843b964 commit 2e399d0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions git-redate
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ is_git_repo

make_editor_choice() {

echo "Which editor do you want to use for this repo?\n";
echo "1. VI\n";
echo "2. NANO\n";
echo "3. Your own\n"
echo "You Choose: ";
echo "Which editor do you want to use for this repo?";
echo "1. VI";
echo "2. NANO";
echo "3. Your own"
echo -n "You Choose: ";

read CHOOSE_EDITOR
}

get_editor_executable() {

echo "What is the path to your prefered test editor?\n";
echo "What is the path to your prefered test editor?";
read EDITOR_PATH
}

Expand Down

0 comments on commit 2e399d0

Please sign in to comment.