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
29
29
done
30
30
31
31
# Install Node
32
- # TODO: use the same node version as everything else, bug 1636164
33
32
NODE_VERSION=$( echo " console.log(require('./package.json').engines.node)" | node)
34
33
mkdir $DW_ROOT /node
35
34
curl 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/
41
40
PATH=$DW_ROOT /node/bin:$DW_ROOT /node_modules/.bin:$PATH
42
41
(
43
42
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
45
45
)
46
46
47
47
# Clean up some stuff
You can’t perform that action at this time.
0 commit comments