We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a152dbf commit 1d58e92Copy full SHA for 1d58e92
.gitignore
@@ -1,3 +1,4 @@
1
+.DS_Store
2
node_modules
3
/index.html
4
*.cddl
scripts/test.sh
@@ -6,7 +6,9 @@ ROOT="$(dirname "$SCRIPT_DIR")"
6
7
if ! [ -x "$(command -v cddl)" ] || [ "$1" = "--upgrade" ]; then
8
echo 'Installing cddl'
9
- cargo install cddl
+ # Remove strict version requirement once the CLI command works again
10
+ # See: https://github.com/anweiss/cddl/issues/213
11
+ cargo install cddl --version 0.9.1
12
fi
13
14
if [[ "$(npm list parse5)" =~ "empty" ]] || [ "$1" = "--upgrade" ]; then
0 commit comments