Fix jq command to use [] instead of ."matrix-js-sdk"

Because otherwise there might be a syntax error looking like
```
error: syntax error, unexpected QQSTRING_START, expecting IDENT
.dependencies."matrix-js-sdk"
```
release-v0.12.0
Luke Barnard 2017-08-16 10:22:09 +01:00
parent cc8518101b
commit c07c060b7d
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ cd `dirname $0`
for i in matrix-js-sdk matrix-react-sdk
do
depver=`cat package.json | jq -r .dependencies.\"$i\"`
depver=`cat package.json | jq -r .dependencies[\"$i\"]`
latestver=`npm show $i version`
if [ "$depver" != "$latestver" ]
then