diff --git a/ci/steps/publish-npm.sh b/ci/steps/publish-npm.sh index 702540875..5b01f627d 100755 --- a/ci/steps/publish-npm.sh +++ b/ci/steps/publish-npm.sh @@ -137,7 +137,10 @@ main() { # Use the development package name # This is so we don't clutter the code-server versions on npm # with development versions. - jq ".name |= \"$PACKAGE_NAME\"" package.json + # jq can't edit in place so we must store in memory and echo + local contents + contents="$(jq ".name |= \"$PACKAGE_NAME\"" package.json)" + echo "${contents}" > package.json popd fi