flypod
CLI reference

flypod update

Ship a new version of a directory or file to the linked flypod site; the new version becomes live immediately.

flypod update ships a new version to the site linked to the current folder, or to an explicit --site. The new version becomes live immediately.

Synopsis

flypod update [path]

The path follows the same auto-detection rules as flypod [path]. flypod resolves the target site from the folder-to-site link saved on the last deploy, or from --site.

If the content is byte-identical to what is already live, flypod prints No changes and ships nothing.

Flags

FlagDescription
--site <id>Target a specific site id instead of the linked one.
--token <manage_token>Authorize with a manage_token instead of your session.
--jsonEmit a single JSON object.
-q, --quietPrint only the essential value on stdout.
-h, --helpPrint usage and exit.

Examples

Ship a new version to the linked site:

flypod update ./dist
https://k3p9x2.flypod.dev

No-op when nothing changed:

flypod update ./dist
No changes (already live)

Target a specific site with a manage token:

flypod update ./dist --site k3p9x2 --token mt_...

Notes

  • A 401 or 403 response means you are not authorized to update that site.
  • A 404 means the linked site no longer exists. flypod drops the stale link and tells you to run flypod to create a fresh deploy.
  • Use flypod versions to inspect history and flypod rollback to revert.

On this page