fix(install): bootstrap the web installer so the curl one-liner works - #3
Open
teaspoonai wants to merge 1 commit into
Open
fix(install): bootstrap the web installer so the curl one-liner works#3teaspoonai wants to merge 1 commit into
teaspoonai wants to merge 1 commit into
Conversation
The entrypoint served at get.teaspoon.tech/teaport delivers a single
file, but install.sh needs the whole product tree (brain/, systemd/*.in,
cli/teaport, bridge/) — so a piped install died at the systemd phase
("missing unit template: .../systemd/teaport-engine.service.in").
Add install-bootstrap.sh: it clones the (now public) teaport repo into a
temp dir and runs install.sh from that checkout, cleaning up after. The
engine + models still come from the release manifest. This is what
get.teaspoon.tech/teaport now serves.
Verified: `bash <(bootstrap) --dry-run` clones + reaches done, systemd
units render from the checkout. CI bash -n's the bootstrap too.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
bash <(curl -fsSL https://get.teaspoon.tech/teaport)one-liner only delivers a single file, butinstall.shneeds the whole tree (brain/, systemd/*.in, cli/, bridge/). A real piped install died at the systemd phase —missing unit template: …/systemd/teaport-engine.service.in(render_unitreads$HERE/systemd/, which doesn't exist when piped).Fix: add
install-bootstrap.sh— it clones the now-public teaport repo into a temp dir and runsinstall.shfrom that checkout, then cleans up. Engine + models still come from the manifest. This is whatget.teaspoon.tech/teaportnow serves.Evidence:
TEAPORT_ALLOW_NON_JETSON=1 bash install-bootstrap.sh --dry-runclones the repo, rendersteaport-engine.service/teaport-brain.servicefrom the checkout, and reachesdone.CI bash -n's the bootstrap.Found during WS6 pre-flight before flashing a Jetson.