diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-01-09 21:42:55 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-10 19:27:18 +0100 |
| commit | f04d06bb16e792f66a1dd2f3e277581d1b9c43f9 (patch) | |
| tree | 526eeab9059d478e2bbd88719fcfc48ce20e72e1 | |
| parent | 3988370d39d0f3ef183986b486c03479615f99e6 (diff) | |
Improve verbose output when writing to the current directory.
| -rw-r--r-- | src/lib/kdm_cli.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/kdm_cli.cc b/src/lib/kdm_cli.cc index 3815b3d65..8086fc4b7 100644 --- a/src/lib/kdm_cli.cc +++ b/src/lib/kdm_cli.cc @@ -414,7 +414,7 @@ optional<string> kdm_cli (int argc, char* argv[], std::function<void (string)> out) try { - boost::filesystem::path output = "."; + boost::filesystem::path output = boost::filesystem::current_path(); auto container_name_format = Config::instance()->kdm_container_name_format(); auto filename_format = Config::instance()->kdm_filename_format(); optional<string> cinema_name; |
