aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcreate3
1 files changed, 2 insertions, 1 deletions
diff --git a/create b/create
index 04d299a..f3fa041 100755
--- a/create
+++ b/create
@@ -23,7 +23,8 @@ function is_bare() {
function git_init() {
PROJECT=$1
echo "creating project \"${PROJECT}.git\""
- read -p "Describe your project in one line: " DESCRIPTION
+ echo -n "Describe your project in one line: "
+ read DESCRIPTION
if [ ! -d ${GITDIR}/${PROJECT}.git ]; then
mkdir ${GITDIR}/${PROJECT}.git
fi