From d9903927d9b3232e6ff054cc1b3900d1e29db4d9 Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Nov 13 2017 18:49:00 +0000 Subject: bin/get_formulas.sh: print error message if no arguments are given --- diff --git a/bin/get_formulas.py b/bin/get_formulas.py index 53e048f..bde36d1 100755 --- a/bin/get_formulas.py +++ b/bin/get_formulas.py @@ -111,3 +111,6 @@ if args.clone or args.symlink or args.remote: parser.print_help() sys.exit(1) enable_remote(args.remote[0], args.destination[0]) +else: + parser.print_help() + sys.exit(1)