File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1+ audience: developers
2+ level: patch
3+ ---
4+ This version fixes an error in docker-worker's release script that caused the 38.0.0 release to fail.
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ for f in src schemas .npmignore package.json yarn.lock config.yml bin-utils; do
2929done
3030
3131# Install Node
32- # TODO: use the same node version as everything else, bug 1636164
3332NODE_VERSION=$( echo " console.log(require('./package.json').engines.node)" | node)
3433mkdir $DW_ROOT /node
3534curl https://nodejs.org/dist/v${NODE_VERSION} /node-v${NODE_VERSION} -linux-x64.tar.xz | tar -C $DW_ROOT /node --strip-components=1 -xJf -
@@ -41,7 +40,8 @@ curl -L https://yarnpkg.com/latest.tar.gz | tar --transform 's|yarn-[^/]*/|yarn/
4140PATH=$DW_ROOT /node/bin:$DW_ROOT /node_modules/.bin:$PATH
4241(
4342 cd $DW_ROOT
44- ./yarn/bin/yarn install --dev
43+ # --ignore-engines is to ignore if we're using the wrong version of yarn
44+ ./yarn/bin/yarn install --dev --ignore-engines
4545)
4646
4747# Clean up some stuff
You can’t perform that action at this time.
0 commit comments