From e6a9ffba2f5fbe652e43ab4f67bccf27bbbe3fb2 Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sat, 20 Sep 2014 23:41:51 +0530 Subject: [PATCH] makefile: fix help message --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 65609741..a578ceba 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,11 @@ help: @echo "" @echo "-- Help Menu" @echo "" - @echo " 1. make build - build the gitlab image" - @echo " 2. make start - start gitlab" - @echo " 3. make stop - stop gitlab" - @echo " 4. make logs - view logs" - @echo " 5. make purge - stop and remove the container" + @echo " 1. make build - build the gitlab image" + @echo " 2. make quickstart - start gitlab" + @echo " 3. make stop - stop gitlab" + @echo " 4. make logs - view logs" + @echo " 5. make purge - stop and remove the container" build: @docker build --tag=${USER}/gitlab .