Skip to content

Commit b6e29e9

Browse files
authored
chore(app-shell-odd): push: proper deps ordering (#16968)
Make does recipe dependences left to right. This fixes an issue where pushes would push a stale frontend.
1 parent 11f473e commit b6e29e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app-shell-odd/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ dist-ot3: clean lib
7272
NO_USB_DETECTION=true OT_APP_DEPLOY_BUCKET=opentrons-app OT_APP_DEPLOY_FOLDER=builds OPENTRONS_PROJECT=$(OPENTRONS_PROJECT) $(builder) --linux --arm64
7373

7474
.PHONY: push-ot3
75-
push-ot3: dist-ot3 deps
75+
push-ot3: deps dist-ot3
7676
tar -zcvf opentrons-robot-app.tar.gz -C ./dist/linux-arm64-unpacked/ ./
7777
scp $(if $(ssh_key),-i $(ssh_key)) $(ssh_opts) -r ./opentrons-robot-app.tar.gz root@$(host):
7878
ssh $(if $(ssh_key),-i $(ssh_key)) $(ssh_opts) root@$(host) "mount -o remount,rw / && systemctl stop opentrons-robot-app && rm -rf /opt/opentrons-app && mkdir -p /opt/opentrons-app"

0 commit comments

Comments
 (0)