mirror of https://github.com/OpenVidu/openvidu.git
ci-scripts: add -j flag to jq command
parent
0334147690
commit
6d62d091df
|
@ -396,7 +396,7 @@ fi
|
||||||
# -------------
|
# -------------
|
||||||
if [[ "${BUMP_NPM_DEPENDENCY_VERSION}" == true ]]; then
|
if [[ "${BUMP_NPM_DEPENDENCY_VERSION}" == true ]]; then
|
||||||
pushd ${PROJECT_PATH}
|
pushd ${PROJECT_PATH}
|
||||||
tmp=$(mktemp) && jq ".dependencies.\"${DEPENDENCY}\" = \"${VERSION}\"" package.json >"$tmp" && mv "$tmp" package.json
|
tmp=$(mktemp) && jq -j ".dependencies.\"${DEPENDENCY}\" = \"${VERSION}\"" package.json >"$tmp" && mv "$tmp" package.json
|
||||||
# npm install "${DEPENDENCY}@${VERSION}" --save-exact=true --legacy-peer-deps
|
# npm install "${DEPENDENCY}@${VERSION}" --save-exact=true --legacy-peer-deps
|
||||||
popd
|
popd
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue