summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-07-20 16:28:36 -0700
committerMatthew Miller <matthew@millerti.me>2020-07-20 16:28:36 -0700
commitdddf38f1cfaaba2c5a13ce152b5982d3a24edf26 (patch)
treebf9aceb875c7c07145e191d31f95e40d1d8d4ca8
parent797c8e0b856faa13eb8dd1b1b57a820b14720704 (diff)
Generalize the conformance metadata directory
-rw-r--r--.gitignore2
-rw-r--r--example/fido-conformance-mds/.gitkeep0
-rw-r--r--example/fido-conformance.js2
3 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index cac9d62..ddef3b5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,5 @@ docs/
.env
example/localhost.key
example/localhost.crt
+example/fido-conformance-mds/*
+!example/fido-conformance-mds/.gitkeep
diff --git a/example/fido-conformance-mds/.gitkeep b/example/fido-conformance-mds/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/example/fido-conformance-mds/.gitkeep
diff --git a/example/fido-conformance.js b/example/fido-conformance.js
index f5e2b95..a844ac9 100644
--- a/example/fido-conformance.js
+++ b/example/fido-conformance.js
@@ -32,7 +32,7 @@ const statements = [];
try {
// Update this to whatever folder you extracted the statements to
- const conformanceMetadataPath = './fido-conformance-mds-v1.3.4';
+ const conformanceMetadataPath = './fido-conformance-mds';
const conformanceMetadataFilenames = fs.readdirSync(conformanceMetadataPath);
for (const statementPath of conformanceMetadataFilenames) {
if (statementPath.endsWith('.json')) {