From 5474134f7491e2eb70634245c534448d29f6f2ca Mon Sep 17 00:00:00 2001 From: Antonio de la Rosa Date: Wed, 4 May 2016 05:27:24 +0200 Subject: [PATCH] Added new option to console.py --- paramecio/console.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/paramecio/console.py b/paramecio/console.py index 9416bce..1e79e72 100644 --- a/paramecio/console.py +++ b/paramecio/console.py @@ -15,6 +15,8 @@ def start(): parser.add_argument('--path', help='The path where the paramecio site is located', required=True) + parser.add_argument('--modules', help='A list separated by commas with the git repos for download modules for this site', required=False) + parser.add_argument('--symlink', help='Set if create direct symlink to paramecio in new site', required=False, nargs='?', const='1') args=parser.parse_args()