Skip to content

Commit

Permalink
meta-opentrons: allow s-d setup-js to fail
Browse files Browse the repository at this point in the history
We recently removed setup-js from the shared-data makefile because it's
not needed anymore, but the recipe for the ODD needed to know that.
Temporarily just allow it to fail instead of removing it since sometimes
it will be needed until we're forever done building old branches.
  • Loading branch information
sfoster1 committed Dec 8, 2023
1 parent ed2d823 commit 7091f0e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ do_configure(){
cd ${S}/app-shell-odd
yarn electron-rebuild --arch=arm64
cd ${S}
OPENTRONS_PROJECT=${OPENTRONS_PROJECT} make -C shared-data setup-js
# we removed setup-js from shared-data recently so let's allow it to fail so we
# can handle both the is-there and the is-not-there case
OPENTRONS_PROJECT=${OPENTRONS_PROJECT} make -C shared-data setup-js || true
}

do_compile(){
Expand Down

0 comments on commit 7091f0e

Please sign in to comment.