From 9be763b0f03ae464a1217640f0516fa7e41e75e4 Mon Sep 17 00:00:00 2001 From: Aleksandr Sorokoumov Date: Thu, 17 Feb 2022 14:56:13 +0100 Subject: [PATCH] Fix default value for --directory CLI argument --- CHANGELOG.md | 1 + src/elle_cli/cli.clj | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b1213f..a781196 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ change log follows the conventions of ### Fixed - Fix --cycle-search-timeout, --plot-timeout, and --max-plot-bytes CLI arguments +- Fix default value for --directory CLI argument ### Changed diff --git a/src/elle_cli/cli.clj b/src/elle_cli/cli.clj index dd0f1f7..d43cdb2 100644 --- a/src/elle_cli/cli.clj +++ b/src/elle_cli/cli.clj @@ -118,7 +118,7 @@ :parse-fn #(Integer/parseInt %)] ["-d" "--directory DIRECTORY" "(Elle) Where to output files, if desired." - :default "store"] + :default nil] ["-p" "--plot-format PLOT-FORMAT" "(Elle) Either 'png' or 'svg'." :default :svg