Skip to content

Commit 1d58e92

Browse files
whimboojgraham
authored andcommitted
Restrict cddl to version 0.9.1 because of broken cli command
1 parent a152dbf commit 1d58e92

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.DS_Store
12
node_modules
23
/index.html
34
*.cddl

scripts/test.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ ROOT="$(dirname "$SCRIPT_DIR")"
66

77
if ! [ -x "$(command -v cddl)" ] || [ "$1" = "--upgrade" ]; then
88
echo 'Installing cddl'
9-
cargo install cddl
9+
# 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
1012
fi
1113

1214
if [[ "$(npm list parse5)" =~ "empty" ]] || [ "$1" = "--upgrade" ]; then

0 commit comments

Comments
 (0)