Skip to content

Commit

Permalink
fix: install failing due to mismatch version (#17798)
Browse files Browse the repository at this point in the history
CXSPA-4403

Spartacus_version specified in install config file now overwrites publishing_version.
  • Loading branch information
FollowTheFlo authored Aug 28, 2023
1 parent 67e1268 commit 5b229ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function update_projects_versions {
fi

printh "Updating all library versions to ${SPARTACUS_VERSION}"
(cd "${CLONE_DIR}/tools/config" && pwd && sed -i -E 's/PUBLISHING_VERSION = '\'\''/PUBLISHING_VERSION = '\'"${SPARTACUS_VERSION}"\''/g' const.ts);
(cd "${CLONE_DIR}/tools/config" && pwd && sed -i -E 's/PUBLISHING_VERSION = '\'.*\''/PUBLISHING_VERSION = '\'"${SPARTACUS_VERSION}"\''/g' const.ts);
(cd "${CLONE_DIR}" && pwd && npm run config:update -- --generate-deps);

}
Expand Down

1 comment on commit 5b229ca

@giancorderoortiz
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please update develop 6.5.x with this commit

Please sign in to comment.