Skip to content

Commit 6985e34

Browse files
committed
Remove "\n" at the end of some echo statements
1 parent 71d4a66 commit 6985e34

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

git-redate

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ is_git_repo
1313

1414
make_editor_choice() {
1515

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

2222
read CHOOSE_EDITOR
2323
}
2424

2525
get_editor_executable() {
2626

27-
echo "What is the path to your prefered test editor?\n";
27+
echo "What is the path to your prefered test editor?";
2828
read EDITOR_PATH
2929
}
3030

0 commit comments

Comments
 (0)