Skip to content

Commit

Permalink
meta-opentrons: install correct release notes (#105)
Browse files Browse the repository at this point in the history
Should have read the todo
  • Loading branch information
sfoster1 authored Sep 19, 2023
1 parent 315ef11 commit fbf65d4
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,12 @@ addtask do_write_systemd_dropfile after do_compile before do_install
do_install_append () {
# add release notes
install -d ${D}${sysconfdir}
# TODO: Make this not the internal release notes at some point
install ${S}/api/release-notes-internal.md ${D}${sysconfdir}/release-notes.md

if [ "${OPENTRONS_PROJECT}" == "ot3" ] ; then
install ${S}/api/release-notes-internal.md ${D}${sysconfdir}/release-notes.md
else
install ${S}/api/release-notes.md ${D}${sysconfdir}/release-notes.md
fi

# create json file to be used in VERSION.json
install -d ${D}/opentrons_versions
Expand Down

0 comments on commit fbf65d4

Please sign in to comment.