Skip to content

Commit

Permalink
Fix base config default when not using vcs (#3030)
Browse files Browse the repository at this point in the history
  • Loading branch information
lebauce authored Jan 8, 2021
1 parent cac1063 commit bc84c30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/molecule/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def print_version(ctx, param, value):
"--base-config",
"-c",
multiple=True,
default=[LOCAL_CONFIG],
default=[LOCAL_CONFIG] if LOCAL_CONFIG else [],
help=(
"Path to a base config (can be specified multiple times)."
" If provided, Molecule will first load and deep merge the"
Expand Down

0 comments on commit bc84c30

Please sign in to comment.