summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic_cli.cc13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc
index 0307cac9c..36929db36 100644
--- a/src/tools/dcpomatic_cli.cc
+++ b/src/tools/dcpomatic_cli.cc
@@ -129,13 +129,6 @@ main (int argc, char* argv[])
new JSONServer (json_port.get ());
}
- cout << "DCP-o-matic " << dcpomatic_version << " git " << dcpomatic_git_commit;
- char buf[256];
- if (gethostname (buf, 256) == 0) {
- cout << " on " << buf;
- }
- cout << "\n";
-
shared_ptr<Film> film;
try {
film.reset (new Film (film_dir));
@@ -155,8 +148,10 @@ main (int argc, char* argv[])
}
}
}
-
- cout << "\nMaking DCP for " << film->name() << "\n";
+
+ if (progress) {
+ cout << "\nMaking DCP for " << film->name() << "\n";
+ }
film->make_dcp ();