Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/snowflake/cli/api/commands/flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ def _decimal_precision_callback(value: int | str | None):
PruneOption = OverrideableOption(
False,
"--prune/--no-prune",
help=f"Delete files that exist in the stage, but not in the local filesystem.",
help="Delete files that exist in the app's stage directory but not in the local filesystem. When multiple apps share the same stage, only the deployed app's files are affected.",
show_default=True,
)

Expand Down
7 changes: 5 additions & 2 deletions tests/__snapshots__/test_help_messages.ambr
Original file line number Diff line number Diff line change
Expand Up @@ -23654,8 +23654,11 @@
| exists. It only uploads new and |
| overwrites existing files, but does not |
| remove any files already on the stage. |
| --prune --no-prune Delete files that exist in the stage, but |
| not in the local filesystem. |
| --prune --no-prune Delete files that exist in the app's |
| stage directory but not in the local |
| filesystem. When multiple apps share the |
| same stage, only the deployed app's files |
| are affected. |
| [default: no-prune] |
| --open Whether to open the Streamlit app in a |
| browser. |
Expand Down