summaryrefslogtreecommitdiff
path: root/dotbot/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'dotbot/cli.py')
-rw-r--r--dotbot/cli.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/dotbot/cli.py b/dotbot/cli.py
index 258ea87..b400dd6 100644
--- a/dotbot/cli.py
+++ b/dotbot/cli.py
@@ -74,6 +74,9 @@ def main():
log.error('No configuration file specified')
exit(1)
tasks = read_config(options.config_file)
+ if tasks is None:
+ log.warning('Configuration file is empty, no work to do')
+ tasks = []
if not isinstance(tasks, list):
raise ReadingError('Configuration file must be a list of tasks')
if options.base_directory: