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
| Flag | Description |
|---|---|
--site <id> | Target a specific site id instead of the linked one. |
--token <manage_token> | Authorize with a manage_token instead of your session. |
--json | Emit a single JSON object. |
-q, --quiet | Print only the essential value on stdout. |
-h, --help | Print usage and exit. |
Examples
Ship a new version to the linked site:
flypod update ./disthttps://k3p9x2.flypod.devNo-op when nothing changed:
flypod update ./distNo changes (already live)Target a specific site with a manage token:
flypod update ./dist --site k3p9x2 --token mt_...Notes
- A
401or403response means you are not authorized to update that site. - A
404means the linked site no longer exists. flypod drops the stale link and tells you to runflypodto create a fresh deploy. - Use
flypod versionsto inspect history andflypod rollbackto revert.