aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.adoc2
-rwxr-xr-xtest.sh3
2 files changed, 3 insertions, 2 deletions
diff --git a/README.adoc b/README.adoc
index b6a9233..10e581f 100644
--- a/README.adoc
+++ b/README.adoc
@@ -53,7 +53,7 @@ To enable the VFS, edit your _~/.config/mc/mc.ext.ini_ to contain:
----
[pdf]
Type=^PDF
-Open=%cd %p/pdf://
+Open=%cd %p/extfs-pdf://
----
Contributing and Support
diff --git a/test.sh b/test.sh
index 831a15e..40bd165 100755
--- a/test.sh
+++ b/test.sh
@@ -66,7 +66,8 @@ for tool in "$@"; do
# Only some of our generators use PDF versions higher than 1.5
log "Testing $tool for version detection"
- grep -q "/Version /1.6" "$result" || grep -q "^%PDF-1.6" "$result" \
+ grep -q "/Version /1[.]6" "$result" \
+ || grep -q "^%PDF-1[.][67]" "$result" \
|| die "Version detection seems to misbehave (no upgrade)"
done