Skip to content
Closed
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
1 change: 0 additions & 1 deletion cortex-cli/src/run_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ impl std::fmt::Display for OutputFormat {
pub struct RunCli {
/// Message to send to the AI agent.
/// Multiple arguments are joined with spaces.
#[arg(trailing_var_arg = true)]
pub message: Vec<String>,

/// Execute a predefined command instead of a prompt.
Expand Down
2 changes: 1 addition & 1 deletion cortex-engine/src/tasks/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ impl SnapshotManager {
match state {
FileState::Exists {
content,
permissions: _,
permissions,
..
} => {
// Create parent directories
Expand Down
Loading