diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-04-02 01:16:11 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2016-04-02 01:16:11 +0200 |
commit | 83b29a45e715574b90c480ac9f2916b9e661e865 (patch) | |
tree | 4061541c8564c3aaeba72f5c59224334832aecd8 | |
parent | b34977bd98ea6af28ba4e7c5f2b6e4bee9f2fa4a (diff) | |
download | impressive-display-83b29a45e715574b90c480ac9f2916b9e661e865.tar.gz impressive-display-83b29a45e715574b90c480ac9f2916b9e661e865.tar.bz2 impressive-display-83b29a45e715574b90c480ac9f2916b9e661e865.zip |
Print PDF_URL and PDF_FILE on script startup.
-rwxr-xr-x | bin/impressive-display | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/impressive-display b/bin/impressive-display index 4eb9f34..dd4e891 100755 --- a/bin/impressive-display +++ b/bin/impressive-display @@ -432,13 +432,13 @@ function create_lock { if [ -n "$PDF_URL" ]; then - echo "INFO: PDF_URL is configured. Using PDF file from given URL." + echo "INFO: PDF_URL is configured. Using PDF file from given URL: $PDF_URL" create_lock download_loop elif [ -n "$PDF_FILE" ]; then - echo "INFO: PDF_FILE is configured. Using local PDF." + echo "INFO: PDF_FILE is configured. Using local PDF file: $PDF_FILE" create_lock local_pdffile |