Skip to content

Commit

Permalink
feat: Strip Yarn when generating Node >13
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Apr 15, 2020
1 parent ab697c9 commit b7e51eb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ function update_node_version() {
fi
sed -Ei -e 's/^(ENV YARN_VERSION ).*/\1'"${yarnVersion}"'/' "${dockerfile}-tmp"

# Remove Yarn for Node 14+
if [ "${version}" -gt 13 ]; then
sed -Ei -e '/ENV YARN_VERSION/,/yarn --version/d' "${dockerfile}-tmp"
fi

# shellcheck disable=SC1004
new_line=' \\\
'
Expand Down

0 comments on commit b7e51eb

Please sign in to comment.