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
4 changes: 2 additions & 2 deletions lib/cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# Four flag buckets (Bash 3.2 compatible - no associative arrays)
readonly HOST_ONLY_FLAGS=(--verbose rebuild)
readonly CONTROL_FLAGS=(--enable-sudo --disable-firewall)
readonly SCRIPT_COMMANDS=(shell create slot slots revoke profiles projects profile info help -h --help add remove install allowlist clean save project tmux kill)
readonly SCRIPT_COMMANDS=(shell create slot slots revoke profiles projects profile info help -h --help add remove install allowlist clean save project tmux kill resume)

# parse_cli_args - Central CLI parsing with four-bucket architecture
# Usage: parse_cli_args "$@"
Expand Down Expand Up @@ -82,7 +82,7 @@ get_command_requirements() {

case "$cmd" in
# Pure host commands - no Docker or image needed
profiles|projects|help|-h|--help|slots|create|revoke|clean|import|unlink|kill)
profiles|projects|help|-h|--help|slots|create|revoke|clean|import|unlink|kill|resume)
echo "none"
;;
# Commands that need image name but not Docker
Expand Down
Loading