diff options
author | Your Name <you@example.com> | 2020-11-14 06:01:30 -0500 |
---|---|---|
committer | Your Name <you@example.com> | 2020-11-14 06:01:30 -0500 |
commit | 49c05187f739779a6433f75a348529c26e123e94 (patch) | |
tree | 729028de6089439f18c7eb746e3ae7cdfd470501 /mods.cc | |
parent | 41cdb2d5e3f8e5f08b4933cbb9693ee4a6908580 (diff) | |
download | libbible-49c05187f739779a6433f75a348529c26e123e94.tar.gz libbible-49c05187f739779a6433f75a348529c26e123e94.tar.bz2 libbible-49c05187f739779a6433f75a348529c26e123e94.zip |
Fixed issue with multi-full-chapter references
Diffstat (limited to 'mods.cc')
-rw-r--r-- | mods.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -120,7 +120,7 @@ void libbible::installModFromZip(string filename) { string command = "unzip -o " + filename + " -d " + basedir + "&> /dev/null"; if(system(command.c_str())) { //Uh oh... - printf("Something bad happened when unpacking %s\n", filename.c_str()); + printf("Something bad happened when unpacking %s\n. Is unzip installed?", filename.c_str()); } } |