grim/local-pipelines

Parents ba1a782bae24
Children e5b716d5b51b
core: add --env-file for specifying an environment(s) file
--- a/pipelines/core.py Mon Jul 25 13:29:52 2016 -0700
+++ b/pipelines/core.py Mon Jul 25 18:47:26 2016 -0700
@@ -33,6 +33,15 @@
dest="host"
)
+ parser.add_argument(
+ "--env-file",
+ help="The filename of the environment variables file to use",
+ metavar="FILENAME",
+ dest="env_filenames",
+ default=[],
+ action='append',
+ )
+
return parser.parse_args()